:root {
  /* Color */
  --bs-white: #ffffff;
  --bs-black: #000000;
  --bs-red: #ff0000;
  --bs-green: #00ff2a;
  --bs-yellow: #eeff00;
  --bs-orange: #ff8c00;
  --bs-blue: #0800ff;
  --bs-voilet: #9900ff;
  --bs-whites: #fcfcfc;
  --bs-UR-blue: #1768b4;
  --bs-UR-green: #bad657;
  --bs-UR-liteblue: #0c8fcf;
  --bs-UR-red: #f14e4e;
  --bs-UR-whitelite: #fafafa;
  --bs-whitegrey: #f9f9f9;
  --bs-primary-gradients: linear-gradient(to bottom, #0c8fcf, #1767b2);
  /* Fonts */
  --bs-Raleway: "Raleway", sans-serif;
  --bs-Lato: "Lato", sans-serif;
  --bs-Poppins: "Poppins", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  width: 100%;
  height: 100%;
}
/* Nav */
.navbar {
  height: 65px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.navbar-content {
  width: 95%;
  margin: 0 auto;
}
.navbar-expand-lg .navbar-collapse {
  justify-content: end;
}
.navbar-brand img {
  width: 150px;
  height: 50px;
}
.navbar-nav .nav-link {
  font-family: var(--bs-Poppins);
  font-size: 15px;
  font-weight: 600;
  margin-right: 25px;
  width: fit-content;
}
.navbar-contact {
  background-color: var(--bs-UR-blue);
  color: var(--bs-white);
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 10px;
}
/* Footer */
.footer {
  background-color: var(--bs-whitegrey);
  width: 100%;
  height: 18rem;
  position: relative;
  margin-top: 70px;
  padding: 0px 45px;
  overflow: hidden;
}
.footer-div {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.footer-one {
  width: 30%;
}
.footer-two {
  width: 20%;
  margin-top: 20px;
}
.footer-three {
  width: 30%;
  margin-top: 20px;
}
.footer-one img {
  width: 45%;
}
.footer-one p {
  font-size: 14px;
  font-family: var(--bs-Lato);
}
.footer-title {
  color: var(--bs-UR-blue);
  font-family: var(--bs-Poppins);
  font-weight: 700;
  font-size: 18px;
}
.footer-two ul {
  padding: 0px;
}
.footer-two ul li {
  list-style: none;
  line-height: 38px;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bs-Lato);
}
.footer-three address {
  margin: 5px 0px;
  font-size: 16px;
  font-family: var(--bs-Lato);
  font-weight: 400;
}
.footer i {
  font-size: 17px;
  color: var(--bs-UR-blue);
  margin-right: 10px;
}
.footer-three ul li {
  list-style: none;
  line-height: 32px;
}
.footer-three ul {
  padding: 0px;
}
.footer-three a {
  text-decoration: none;
  color: inherit;
  font-family: var(--bs-Lato);
}
.footer-social i {
  font-size: 24px;
  margin-right: 20px;
  margin-top: 15px;
}
.footer-bg-1 {
  position: absolute;
  left: -330px;
  top: -100px;
  width: 50%;
  opacity: 5%;
}
.footer-bg-2 {
  position: absolute;
  right: -330px;
  bottom: -100px;
  width: 50%;
  opacity: 5%;
}
/* Main div */
.container-fluid {
  padding: 0px;
}
.main-div {
  width: 100%;
  height: 80%;
  position: relative;
  overflow: hidden;
}
.main-div img {
  width: 100%;
  height: 800px;
}
.background-overlay {
  width: 100%;
  height: 100%;
  background-color: var(--bs-black);
  opacity: 50%;
  z-index: 1;
  position: absolute;
  top: 0;
}
.main-div h1 {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  font-family: var(--bs-Poppins);
  color: var(--bs-white);
  font-weight: 600;
  line-height: 50px;
}
h2 {
  position: relative;
  font-family: var(--bs-Poppins);
  color: var(--bs-UR-blue);
  font-weight: 600;
}
h2 span {
  color: var(--bs-UR-green);
}
h2::before {
  position: absolute;
  top: 45px;
  left: 55px;
  /* right: 0; */
  bottom: -10px;
  content: "";
  width: 15px;
  height: 3px;
  margin: 0 auto;
  background: var(--bs-UR-green);
  border-radius: 250px;
}
h2:after {
  position: absolute;
  top: 45px;
  left: 0;
  /* right: 0; */
  bottom: -10px;
  content: "";
  width: 50px;
  height: 3px;
  margin: 0 auto;
  background: var(--bs-UR-green);
  border-radius: 250px;
}
h3 {
  position: relative;
  font-family: var(--bs-Poppins);
  color: var(--bs-UR-blue);
  font-weight: 600;
}
h3 span {
  color: var(--bs-UR-green);
}
.service-div {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.service {
  padding: 45px;
  height: 40rem;
}
.service-card {
  width: 30%;
  height: 400px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 10px;
  border-radius: 5px;
  transition: 500ms ease-in-out;
}
.service-img img {
  width: 100%;
  border-radius: 5px;
}
.service-title h3 {
  margin-top: 10px;
  font-family: var(--bs-Poppins);
  font-weight: 600;
  color: var(--bs-UR-blue);
  font-size: 24px;
  padding-top: 10px;
}
.service-para {
  font-size: 14px;
  font-family: var(--bs-Lato);
}
.service-card:hover {
  margin-top: 10px;
}
/* Abou-us */
.about-us {
  padding: 90px 45px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  background-color: var(--bs-UR-whitelite);
  position: relative;
  z-index: -10;
  flex-wrap: wrap;
}
.about-content {
  width: 50%;
}
.about-content p {
  font-family: var(--bs-Lato);
  font-size: 16px;
  line-height: 35px;
}
.about-img {
  width: 40%;
  position: relative;
}
.about-para{
  width: 100%;
  font-family: var(--bs-Lato);
  font-size: 16px;
  line-height: 35px;
}
.about-img img {
  width: 90%;
  border-radius: 5px;
  height: 380px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  position: relative;
  z-index: 10;
}
.bg-overlay {
  position: absolute;
  width: 350px;
  height: 30rem;
  background-image: var(--bs-primary-gradients);
  z-index: 0;
  top: -50px;
  right: -10px;
  border-radius: 5px;
  z-index: 5;
}
.site-bold {
  font-weight: 600;
  color: var(--bs-red);
}
/* What we do */
.offer-div {
  width: 100%;
  padding: 45px;
  display: flex;
  justify-content: space-between;
}
.offer-content {
  width: 45%;
  margin-top: 45px;
}
.offer-content p {
  font-family: var(--bs-Lato);
  font-size: 16px;
  line-height: 35px;
}
.offer-img {
  width: 50%;
  display: flex;
  gap: 10px;
}
.offer-img-1 {
  width: 45%;
  height: 40rem;
  /* background-color: #00ff2a; */
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.offer-img-2 {
  width: 45%;
  height: 40rem;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.offer-img-11 {
  width: 100%;
  /* height: 0rem; */
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
}
.offer-img-11 img {
  height: 37rem;
  margin-left: -500px;
}
.offer-img-2 img {
  height: 37rem;
  margin-left: -400px;
}
.offer-abstract {
  background-color: var(--bs-UR-green);
  /* width: 100px; */
  width: 20%;
  height: 45px;
}
/* Material */
.material {
  width: 100%;
  padding: 45px;
  background-color: var(--bs-UR-whitelite);
}
.material h2 {
  text-align: center;
  width: fit-content;
}
.material p {
  font-family: var(--bs-Lato);
  font-size: 16px;
  line-height: 35px;
}
.material-sub {
  font-family: var(--bs-Poppins);
  font-size: 16px;
  font-weight: 500;
  color: var(--bs-UR-blue);
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.material-div {
  width: 30%;
  height: 300px;
  position: relative;
  margin-bottom: 25px;
}
.material-div img {
  width: 400px;
  height: 300px;
}
.material-div .div-overlay {
  background-image: linear-gradient(to top, #000000, #00000000);
  width: 400px;
  height: -webkit-fill-available;
  position: absolute;
  top: 0;
  opacity: 50%;
  transition: 500ms ease-in-out;
}
.material-div span {
  position: absolute;
  bottom: 0;
  color: var(--bs-white);
  width: fit-content;
  margin-left: 10px;
  font-size: 22px;
  font-family: var(--bs-Poppins);
  font-weight: 600;
  left: 0;
}
.material-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.material h3 {
  text-align: center;
}
.div-overlay:hover {
  background-image: linear-gradient(to top, #00000080, #00000080);
  opacity: 80%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
/* why us */
.why-us-div {
  padding: 45px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.why-us-1 {
  width: 50%;
  display: flex;
  gap: 10px;
}
.why-us-2 {
  width: 50%;
}
.why-us-2 ul {
  padding: 0px;
}
.why-us-2 ul li {
  list-style: none;
  font-family: var(--bs-Lato);
  font-weight: 400;
  display: flex;
  line-height: 40px;
}
.why-us-2 ul li img {
  margin-right: 10px;
  width: 20px;
  height: 25px;
  margin-top: 10px;
}
.why-us-2 p {
  font-family: var(--bs-Lato);
  font-size: 16px;
  line-height: 30px;
}
.why-us-2 ul li span {
  width: 80%;
}
.why-us-1 .offer-img-11 {
  height: 15rem;
}
.why-us-1 .offer-img-11 img {
  margin-left: -95px;
  height: auto;
  margin-top: -90px;
}
.whu-us-img-2 img {
  width: 500px;
  height: -webkit-fill-available;
  margin-left: -175px;
}
.why-us-img-2 img {
  height: 45rem !important;
  margin-left: -90px !important;
}
.why-us-div-1 {
  height: 38rem !important;
  margin-top: 70px;
}
.offer-abstract-1 {
  background-color: var(--bs-UR-liteblue);
  /* width: 100px; */
  width: 100%;
  height: 45px;
}
.why-us-1 .why-us-main img {
  margin-top: 0px;
}
/* Secert */
.secert-div {
  width: 100%;
  padding: 45px;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}
.secert-div-1 {
  width: 50%;
  display: flex;
  gap: 10px;
}
.secert-div-2 {
  width: 50%;
  margin-top: 75px;
}
.secert-div-1 .secert-img-1 {
  width: 20%;
  height: 30rem;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.secert-img-1 img {
  width: 1000px;
  position: absolute;
  left: -150px;
}
.secert-img-2 img {
  width: 1000px;
  position: absolute;
  left: -290px;
  bottom: -110px;
}
.secert-img-3 img {
  width: 1000px;
  position: absolute;
  left: -450px;
}
.secert-img-4 img {
  width: 1000px;
  position: absolute;
  left: -608px;
  top: -70px;
}
.secert-div-1 .secert-img-2 {
  width: 20%;
  height: 30rem;
  border-radius: 100px;
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}
.secert-div-1 .secert-img-3 {
  width: 20%;
  height: 30rem;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.secert-div-1 .secert-img-4 {
  width: 20%;
  height: 30rem;
  border-radius: 100px;
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}
.secert-div-2 p {
  font-family: var(--bs-Lato);
  font-size: 16px;
  line-height: 35px;
  margin-top: 20px;
}
.circle {
  width: 300px;
  height: 300px;
  background-color: #00000010;
  position: absolute;
  left: -200px;
  bottom: 0;
  border-radius: 50%;
}
.circle1 {
  width: 300px;
  height: 300px;
  background-color: #7a7a7a10;
  position: absolute;
  right: -250px;
  top: 50px;
  border-radius: 50%;
}
.circle-icon {
  position: absolute;
  right: 100px;
  top: 45%;
  opacity: 5%;
}
/* Porfolio */
.potfolio {
  width: 100%;
  padding: 45px;
  height: 35rem;
}
.porfolio {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.portfolio-section {
  width: 30%;
  height: 300px;
  padding: 10px;
  position: relative;
  background-color: white;
  box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
  border-radius: 5px;
}
.portfolio-section img {
  width: -webkit-fill-available;
  border-radius: 5px;
  height: -webkit-fill-available;
}
.portfolio-section span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--bs-Poppins);
  color: var(--bs-white);
  z-index: 10;
  font-size: 18px;
  font-weight: 600;
}
.portfolio-section a {
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 10;
  color: var(--bs-UR-green);
  font-family: var(--bs-Lato);
  font-weight: 500;
}
.port-overlay {
  width: 95%;
  background-color: var(--bs-black);
  opacity: 40%;
  position: absolute;
  top: 10px;
  left: 10px;
  height: 280px;
  border-radius: 5px;
}
.portfolio-btn {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 3%;
}
.portfolio-btn .btn {
  background-color: var(--bs-UR-blue);
  color: var(--bs-white);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  font-family: var(--bs-Poppins);
  font-size: 16px;
  transition: 500ms ease-in-out;
}
.portfolio-btn .btn:hover {
  padding: 10px 20px;
}
.potfolio p {
  font-family: var(--bs-Lato);
  font-size: 16px;
  line-height: 35px;
  margin-top: 20px;
}
/* pure app */
.pureapp {
  width: 98%;
  height: auto;
  background-color: var(--bs-UR-red);
  margin: 0 auto;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.pureapp h3 {
  font-size: 28px;
  color: var(--bs-white);
  font-family: var(--bs-Poppins);
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 10;
  margin-top: 50px;
}
.pureapp p {
  font-family: var(--bs-Lato);
  font-size: 16px;
  color: var(--bs-white);
  text-align: center;
  position: relative;
  z-index: 10;
}
.pureapp-tab {
  background-color: var(--bs-white);
  width: fit-content;
  margin: 0 auto;
  padding: 5px 20px;
  border-radius: 10px;
}
.pureapp .nav-item {
  font-family: var(--bs-Poppins);
  font-size: 16px;
}
.pureapp .nav-item .active {
  background-color: var(--bs-red);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  padding: 10px 30px;
}
.pureapp .nav-link {
  color: #000;
}
.pureapp-divs {
  width: 100%;
  display: flex;
  padding: 30px;
  align-items: center;
}
.pureapp-div-1 {
  width: 45%;
}
.pureapp-div-2 {
  width: 55%;
}
.pureapp-div-1 img {
  width: 500px;
}
.pureapp-div-2 h4 {
  font-size: 38px;
  font-family: var(--bs-Poppins);
  font-weight: 700;
  color: var(--bs-white);
}
.pureapp-div-2 p {
  font-family: var(--bs-Lato);
  font-size: 16px;
  color: var(--bs-white);
  text-align: left;
  line-height: 30px;
}
.pureapp-div-2 ul {
  margin: 0px;
  padding: 0px;
}
.pureapp-div-2 ul li {
  line-height: 50px;
  list-style: none;
  color: var(--bs-white);
  font-family: var(--bs-Lato);
  font-size: 17px;
}
.pureapp-div-2 ul li i {
  color: var(--bs-UR-green);
  font-size: 12px;
  filter: drop-shadow(5px 5px 5px rgba(34, 34, 34, 0.181));
  margin-right: 10px;
}
.pureapp-btn .btn {
  background-color: var(--bs-white);
  color: var(--bs-UR-red);
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-top: 20px;
  font-family: var(--bs-Poppins);
  font-size: 16px;
  font-weight: 600;
  transition: 300ms ease-in-out;
}
.pureapp-btn .btn:hover {
  padding-left: 20px;
}
.wave-bg {
  position: absolute;
  z-index: 1;
  width: -webkit-fill-available;
  opacity: 10%;
}
.pureapp-section {
  position: relative;
  z-index: 10;
  padding: 30px;
}
.circle2 {
  width: 220px;
  height: 220px;
  background-color: #ffffff;
  position: absolute;
  left: -150px;
  top: 50px;
  border-radius: 50%;
  z-index: 10;
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}
.circle3 {
  width: 220px;
  height: 220px;
  background-color: #ffffff;
  position: absolute;
  right: -120px;
  bottom: 50px;
  border-radius: 50%;
  z-index: 10;
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

/* Contact us */
.contact-us {
  width: 100%;
  margin-top: 65px;
  position: relative;
}
.contact-us h1 {
  text-align: center;
  color: var(--bs-white);
  font-family: var(--bs-Poppins);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  font-weight: 700;
}
.box {
  position: absolute;
  background-color: var(--bs-UR-blue);
  height: 15rem;
  top: 0;
  width: 100%;
}
.contact-div {
  width: 80%;
  height: auto;
  background-color: var(--bs-white);
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  display: flex;
  justify-content: space-between;
  padding: 25px;
}
.contact-detail {
  width: 50%;
  padding: 25px;
}
.contact-form {
  width: 50%;
  border-left: 2px solid #bad657;
  padding: 25px;
}
.contact-det i {
  margin-right: 10px;
  color: var(--bs-UR-blue);
}
.contact-det address {
  margin-left: 30px;
}
.contact-det span {
  color: var(--bs-UR-blue);
  font-family: var(--bs-Poppins);
  font-size: 16px;
  font-weight: 600;
}
.contact-det a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--bs-black);
}
.contact-form span {
  font-size: 28px;
  color: var(--bs-UR-blue);
  font-weight: 600;
  font-family: var(--bs-Poppins);
}
.form-ipt span {
  color: var(--bs-red);
  font-size: 16px;
}
.form-btn .btn {
  background-color: var(--bs-UR-blue);
  font-family: var(--bs-Poppins);
  font-size: 16px;
  font-weight: 600;
}
.form-ipt {
  margin-top: 20px;
}
/* LightGallery */
.lightgallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  justify-content: center;
  padding-top: 50px;
}
.lightgallery img {
  width: 350px;
  height: 250px;
  border-radius: 2px;
}
.gallery-content .box {
  height: 13rem;
}
.gallery-content .contact-us h1 {
  height: 4rem;
  padding-top: 30px;
}
.gallery-content p {
  text-align: center;
  color: var(--bs-white);
  font-family: var(--bs-Lato);
}
.blog-sections {
  display: flex;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  padding: 45px;
  margin-top: 50px;
  gap: 60px;
}
.blog-section-1 {
  width: 30%;
  height: fit-content;
  background-color: var(--bs-white);
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
}
.blog-sections-img {
  height: 300px;
  width: 100%;
}
.blog-sections-img img {
  height: 95%;
  width: -webkit-fill-available;
  border-radius: 5px;
}
.blog-section-title span {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--bs-Poppins);
  margin-top: 15px;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  height: 55px;
}
.blog-section-para p {
  font-size: 12px;
  text-align: left;
  margin: 10px 0px;
  color: var(--bs-blackgrey);
  height: 40px;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-section-btn .btn {
  background-color: var(--bs-UR-blue);
  color: var(--bs-white);
  font-family: var(--bs-black);
  border-radius: 5px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  margin-top: 20px;
  transition: 500ms ease-in-out;
}
.blog-section-btn .btn:hover {
  padding-right: 20px;
}
.blog-section-btn {
  text-align: end;
}
.blog-points {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.blog-points-1 {
  width: 50%;
}
.blog-points-2 {
  width: 50%;
  text-align: end;
}
.blog-points-2 img {
  width: 85%;
  border-radius: 5px;
}
.blog-header-conternt p {
  color: var(--bs-black);
  text-align: left;
}
.blog-header-conternt span {
  color: var(--bs-black);
  font-family: var(--bs-Poppins);
  font-weight: 500;
}
.blog-points-1 p {
  color: var(--bs-black);
  text-align: left;
  line-height: 30px;
}
.blog-points-1 p span {
  color: var(--bs-black);
  font-family: var(--bs-Poppins);
  font-weight: 500;
}
.blog-content-section {
  width: 90%;
  margin: 100px auto;
}
.back-btn {
  margin-bottom: 20px;
}
.back-btn a {
  color: var(--bs-UR-blue);
  text-decoration: none;
  font-size: 18px;
  font-family: var(--bs-Poppins);
  font-weight: 600;
}
.footer-two ul a {
  color: inherit;
  text-decoration: none;
}
.form-ipt label {
  font-family: var(--bs-Poppins);
}
.btn {
  color: var(--bs-white);
}
.pure-app-box{
  position: absolute;
    background-color: var(--bs-UR-red);
    height: 13rem;
    top: 0;
    width: 100%;
    border-radius: 10px;
}
.privacy-content{
  width: 95%;
  margin: 80px auto;
}
.privacy-content span{
  font-family: var(--bs-Poppins);
  font-size: 18px;
  font-weight: 600;
}
@media only screen and (max-width: 1080px) {
  html {
    overflow-y: scroll;
  }
  body {
    width: 100%;
    height: 100%;
  }
  .contact-div {
    width: 90%;
    padding: 10px;
  }
  .contact-detail,
  .contact-form {
    padding: 10px;
  }
  .navbar {
    height: fit-content;
  }
  .footer {
    height: fit-content;
  }
  .main-div {
    height: fit-content;
  }
  .main-div img {
    height: fit-content;
  }
  .service-card {
    width: 32%;
    height: auto;
  }
  .service {
    padding: 20px;
    height: auto;
  }
  .about-us {
    padding: 90px 30px;
    flex-wrap: wrap;
    gap: 50px;
    height: fit-content;
  }
  .about-content {
    width: 100%;
  }
  .about-img {
    width: 100%;
  }
  .about-img img {
    width: 90%;
    border-radius: 5px;
    height: auto;
  }
  .bg-overlay {
    width: 350px;
    height: 34rem;
  }
  .offer-div {
    padding: 30px;
  }
  .offer-img {
    width: 65%;
  }
  .offer-content {
    width: 35%;
  }
  .why-us-div {
    flex-direction: column-reverse;
  }
  .why-us-1,
  .why-us-2 {
    width: 100%;
  }
  .why-us-2 p {
    margin-top: 20px;
  }
  .material {
    padding: 30px;
  }
  .material-section {
    flex-wrap: wrap;
  }
  .material-div img {
    width: -webkit-fill-available;
  }
  .material-div .div-overlay {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
  }
  .material-div {
    width: 45%;
  }
  .secert-div {
    flex-direction: column-reverse;
  }
  .secert-div-1 {
    width: 100%;
    justify-content: space-evenly;
  }
  .secert-div-2 {
    width: 100%;
  }
  .potfolio {
    padding: 30px;
    height: fit-content;
  }
  .porfolio {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
  .portfolio-section {
    width: 48%;
    height: 300px;
  }
  .port-overlay {
    height: 280px;
  }
  .portfolio-section img {
    width: -webkit-fill-available;
    border-radius: 5px;
    height: -webkit-fill-available;
  }
  .pureapp-divs {
    flex-direction: column-reverse;
  }
  .circle2 {
    display: none;
  }
  .pureapp-div-1,
  .pureapp-div-2 {
    width: 100%;
  }
  .pureapp-div-1 img {
    width: inherit;
  }
  .blog-points {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .blog-points-1 {
    width: 100%;
  }
  .blog-points-2 {
    width: 100%;
  }
  .blog-points-2 img {
    width: 100%;
  }
  .blog-section-1 {
    width: 48%;
  }
  .blog-sections {
    gap: 30px;
    padding: 20px;
  }
}
@media only screen and (max-width: 786px) {
  html {
    overflow-y: scroll;
  }
  body {
    width: 100%;
    height: 100%;
  }
  .navbar {
    height: auto;
  }
  h2::before {
    top: 40px;
  }
  h2::after {
    top: 40px;
  }
  .material {
    padding: 10px;
  }
  .material-div {
    width: 100%;
  }
  .main-div {
    margin-top: 75px;
  }
  .footer {
    height: auto;
  }
  .footer-div {
    flex-wrap: wrap;
    height: auto;
  }
  .footer-one,
  .footer-two,
  .footer-three {
    width: 100%;
  }
  .potfolio {
    padding: 10px;
    height: auto;
  }
  .porfolio {
    flex-direction: column;
    gap: 20px;
  }
  .portfolio-section {
    width: 100%;
  }
  .portfolio-section img {
    height: 273px;
  }
  .main-div img {
    height: fit-content;
  }
  .service {
    padding: 10px;
    height: auto;
    margin-top: 50px;
  }
  .service-card {
    width: 100%;
  }
  .service-div {
    flex-wrap: wrap;
    gap: 10px;
  }
  .about-us {
    flex-wrap: wrap;
    height: fit-content;
    padding: 20px;
    gap: 20px;
  }
  .about-content,
  .about-img {
    width: 100%;
    position: relative;
  }
  .about-img img {
    width: 100%;
  }
  .bg-overlay {
    position: absolute;
    width: 350px;
    height: 26rem;
    background-image: var(--bs-primary-gradients);
    z-index: 0;
    top: -5%;
    right: -10px;
    border-radius: 5px;
    z-index: 5;
    display: none;
  }
  .offer-div {
    padding: 20px;
    flex-direction: column-reverse;
  }
  .offer-img,
  .offer-content {
    width: 100%;
  }
  .offer-img-1,
  .offer-img-2 {
    width: 50%;
  }
  .why-us-div {
    padding: 20px;
  }
  .why-us-div {
    flex-direction: column-reverse;
  }
  .why-us-1,
  .why-us-2 {
    width: 100%;
  }
  .material-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
  }
  .material-div img {
    width: -webkit-fill-available;
    height: inherit;
  }
  .material-div .div-overlay {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
  }
  .secert-div {
    flex-direction: column-reverse;
    padding: 20px;
  }
  .secert-div-1,
  .secert-div-2 {
    width: 100%;
  }
  .secert-div-1 .secert-img-1,
  .secert-div-1 .secert-img-2,
  .secert-div-1 .secert-img-3,
  .secert-div-1 .secert-img-4 {
    width: 23%;
  }
  .secert-img-1 img {
    width: 1000px;
    position: absolute;
    left: -267px;
  }
  .secert-img-2 img {
    width: 1000px;
    position: absolute;
    left: -351px;
    bottom: -110px;
  }
  .secert-img-3 img {
    width: 1000px;
    position: absolute;
    left: -444px;
  }
  .secert-img-4 img {
    width: 1000px;
    position: absolute;
    left: -550px;
    top: -90px;
  }
  .circle2 {
    display: none;
  }
  .circle3 {
    display: none;
  }
  .pureapp-section {
    padding: 10px;
  }
  .pureapp-tab {
    padding: 5px;
  }
  .pureapp-divs {
    flex-direction: column-reverse;
    padding: 15px;
  }
  .pureapp-div-1,
  .pureapp-div-2 {
    width: 100%;
    height: fit-content;
  }
  .pureapp-div-1 img {
    width: -webkit-fill-available;
  }
  .pureapp p {
    padding: 10px;
  }
  .contact-div {
    flex-wrap: wrap;
    width: 90%;
    padding: 10px;
  }
  .contact-detail,
  .contact-form {
    width: 100%;
  }
  .contact-form {
    border-left: 0px solid;
    border-top: 2px solid #bad657;
    padding: 15px;
  }
  .contact-detail {
    padding: 15px;
  }
  .secert-div-2 h2 {
    font-size: 23px;
  }
  .blog-sections {
    padding: 15px;
  }
  .blog-section-1 {
    width: 100%;
  }
  .blog-points {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .blog-points-1 {
    width: 100%;
  }
  .blog-points-2 {
    width: 100%;
  }
  .blog-points-2 img {
    width: 100%;
  }
}

/* Animation Css */
.reveal {
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}
