/* =====Google Fonts===== */
@import url("https://fonts.googleapis.com/css2?family=Michroma&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");

/* External Font */
@font-face {
  font-family: "Michroma_bold";
  src: url(./Microgramma\ D\ Extended\ Bold.otf);
}

* {
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
}

p {
  font-family: "Poppins", serif;
  color: #fff;
  margin: 0px;
  font-size: 22px;
  font-weight: 300;
}

h4 {
  margin: 0;
}

ul {
  font-size: 22px;
}

@media (max-width: 990px) {
  p {
    font-size: 14px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  ul {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
  font-family: "Poppins", serif;
  color: var(--secondary-color);
}

/* ====================Root==================== */

:root {
  --primary-color: #00b388;
  --dark-primary-color: #101e12;
  --secondary-color: #ffffff;
  --dark-color: #000000;
  --transparent-color: #00000000;
}

/* ==========Header========== */
#header {
  background-color: black;
  padding: 20px;
}

#header.home-header {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: transparent !important;
  z-index: 999;
}

.header-logo {
  width: 220px;
}

.header-logo img {
  width: 100%;
}

a.mail-btn {
  padding: 5px 30px;
  border: 2px solid var(--secondary-color);
  border-radius: 100px;
  font-size: 14px;
  transition: 0.2s;
}

a.mail-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
  transition: 0.2s;
  margin-top: -5px;
}

a.phone {
  padding: 5px 30px;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 100px;
  color: var(--secondary-color);
  transition: 0.2s;
}

a.phone:hover {
  color: var(--secondary-color);
  background-color: transparent;
  border-color: var(--secondary-color);
}

i.hamburger {
  color: var(--secondary-color);
  font-size: 20px;
  cursor: pointer;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  padding: 3px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

i.hamburger:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

h3.offcanvas-title {
  font-family: "Michroma_bold";
  color: var(--secondary-color);
}

.offcanvas-body .menu-links {
  list-style: none;
  margin: 0;
  padding-left: 20px;
}

.offcanvas-body .menu-links li i {
  color: var(--primary-color);
  font-size: 14px;
  margin-right: 10px;
}

.offcanvas-body .menu-links li {
  margin: 10px 0;
}

.offcanvas-body .menu-links li a {
  font-size: 20px;
  font-weight: 400;
}

.offcanvas-body .menu-links li a:hover {
  color: var(--primary-color);
  transition: 0.2s;
}

/* =====Media Query===== */

@media (max-width: 1024px) {
  .header-logo {
    text-align: center;
  }
}

@media (max-width: 990px) {

  a.mail-btn,
  a.phone {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #header {
    padding: 20px 10px;
  }

  .header-logo {
    text-align: center;
    width: 150px;
  }

  a.mail-btn,
  a.phone {
    padding: 5px 20px;
    font-size: 12px;
  }

  .header-btns i {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {

  a.mail-btn,
  a.phone {
    padding: 5px 10px;
    font-size: 10px;
  }
}

@media (max-width: 460px) {

  a.mail-btn,
  a.phone {
    padding: 3px 8px;
    font-size: 8px;
  }
}

/* ==========Main========== */
/* ==========Home Page========== */
#home_hero_section {
  position: relative;
  padding: 250px 0px 100px 0px;
  overflow: hidden;
  /* height: 100vh; */
}

.home-background-img {
  background-image: url(../images/home/background.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.mel-home-background-img {
  background-image: url(../images/hero-1.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.mel-home-background-img:after {
  content: "";
  position: absolute;
  top: 0;
  background-color: #000000;
  width: 100%;
  opacity: 0.89;
  height: 100%;
}

.side-img {
  /* width: 100%; */
  height: 100%;
  position: absolute;
  right: -15%;
  top: 0;
  z-index: -1;
}

.mel-side-img {
  right: 0%;
}

.side-img img {
  width: 100%;
  height: 100%;
}

.view-height {
  height: 90vh;
  display: flex;
  align-items: center;
}

h5.welcome-subtitle {
  font-family: "Michroma";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
}

h1.welcome-title {
  font-family: "Michroma";
  font-size: 37px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.welcome-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--secondary-color);
  margin-top: 20px;
}

.home-service-boxes .img-box {
  width: 23.5% !important;
  height: 130px !important;
  margin: 0 !important;
  border-radius: 10px !important;
  gap: 10px !important;
}

.home-service-boxes .img-box .box-img {
  width: 50px;
}

.home-service-boxes .img-box .box-img img {
  width: 100%;
}

.home-service-boxes .box-title p {
  font-size: 15px !important;
  font-weight: 500;
}

.home-service-boxes .box-title p span {
  font-size: 10px;
}

.form-style {
  background-color: var(--secondary-color);
  border-radius: 100px;
  padding: 5px 5px 5px 10px;
}

.form-check-label {
  font-size: 14px;
  color: var(--secondary-color) !important;
  font-family: "Poppins", serif !important;
  font-weight: 500;
}

.form-style input {
  border: 0;
  background-color: var(--transparent-color) !important;
  color: var(--dark-color);
  font-family: "Poppins", serif;
  font-weight: 500;
}

form .form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-color: var(--transparent-color);
  border: 1px solid var(--secondary-color);
  border-radius: 100px !important;
}

.form-check-input[type=checkbox]:checked {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: none;
}

.form-check-input[type=checkbox]:focus {
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
}

.form-style .sign-up-btn {
  border: 0;
  border-radius: 100px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  font-family: "Poppins", serif;
  font-weight: 500;
  transition: .2s;
}

.form-style .sign-up-btn:hover {
  color: var(--secondary-color);
}

.alert {
  padding: 10px 20px !important;
}

.alert li {
  font-size: 14px !important;
}

.certificate-imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.certificate-img-inner {
  width: 200px;
  height: 100%;
  position: relative;
}

.certificate-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====Media Query===== */
@media (max-width: 768px) {
  .view-height {
    height: 100%;
  }

  h5.welcome-subtitle {
    font-size: 10px;
  }

  h1.welcome-title {
    font-size: 17px;
  }

  .home-service-boxes .img-box {
    width: 23% !important;
  }

  .home-service-boxes .img-box .box-img {
    width: 30px !important;
  }

  .home-service-boxes .box-title p span {
    font-size: 7px;
  }

  .form-style {
    padding: 3px 4px;
  }

  .form-style input {
    padding: 0px 10px;
  }

  .form-style .sign-up-btn {
    font-size: 12px;
  }

  form .form-check-input {
    width: 15px;
    height: 15px;
    margin-top: 7px;
  }

  .form-check-label {
    font-size: 12px;
  }

  .certificate-img-inner {
    width: 100px;
    height: 100%;
  }
}

@media (max-width: 565px) {
  .home-service-boxes .img-box {
    height: 90px !important;
  }

  .home-service-boxes .img-box .box-title p {
    font-size: 8px !important;
  }
}

@media(max-width: 990px) {
  #home_hero_section {
    padding: 200px 0px 0px 0px;
  }

  .contact-us-page {
    padding-bottom: 60px !important;
  }

  .hero-mobile-img {
    width: 100%;
  }

  .hero-mobile-img img {
    width: 100%;
    height: 100%;
    margin-bottom: -20px;
  }
}

/* =====Hero Section===== */
#hero-section {
  position: relative;
  color: var(--secondary-color);
  padding: 0px 0px 100px 0px;
}

section#hero-section:after {
  content: "";
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 250px;
  height: 250px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
  z-index: -1;
}

.background-img {
  background-image: url(../images/drone/2.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.background-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--dark-primary-color);
  opacity: 95%;
}

.first-sec {
  position: relative;
  padding-top: 100px;
}

.background-img-2 {
  background-image: url(../images/hero-1.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 93%;
  top: 0;
  z-index: -1;
  margin-top: -60px;
}

.background-img-2-ts {
  background-image: url(../images/hero\ 1.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 93%;
  top: 0;
  z-index: -1;
  margin-top: -60px;
}

.background-img-2-ts::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, var(--dark-primary-color), transparent);
  opacity: .6;
}

.background-img-2::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, var(--dark-primary-color), transparent);
  opacity: .8;
}

.first-sec .sec-img {
  width: 100%;
}

.first-sec .sec-img img {
  width: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.first-sec .sec-gif {
  width: 100%;
}

.first-sec .sec-gif img {
  width: 100%;
  transform: scale(1.4);
}

.first-sec-content {
  color: var(--secondary-color);
  text-align: center;
}

.first-sec-content .sub-heading {
  font-family: "Michroma";
}

.first-sec-content .main-heading {
  font-family: "Michroma_bold";
  font-size: 45px;
  margin-bottom: 40px;
}

p.description-content {
  /* font-size: 22px; */
  font-weight: 300;
  line-height: 35px;
  margin-bottom: 15px;
}

/* =====Second section start===== */
.second-sec {
  margin-top: 150px;
}

.second-sec-content .second-heading {
  width: 95%;
  font-family: "Michroma";
  font-size: 45px;
  text-transform: capitalize;
}

.img-boxes {
  display: flex;
  flex-wrap: wrap;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.img-boxes .img-box {
  width: 270px;
  height: 200px;
  padding: 20px;
  background-color: #ffffff00;
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
}

.box-img {
  width: 90px;
  height: 100%;
}

.box-img img {
  width: 100%;
  height: 100%;
}

.img-boxes .img-box:nth-child(2),
.img-box:nth-child(4) {
  margin-top: -60px;
}

.img-boxes .img-box.back {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.img-boxes .box-title p {
  font-size: 20px;
}

/* ==========Media Query========== */
@media (max-width: 1430px) {
  .img-boxes .img-box {
    width: 230px;
    /* height: 200px; */
  }

  .img-box .box-title p {
    font-size: 16px;
  }
}

@media (max-width: 1300px) {

  .img-boxes .img-box:nth-child(2),
  .img-box:nth-child(4) {
    margin-top: -40px;
  }

  .img-boxes .img-box {
    width: 200px;
    /* height: 180px; */
  }

  .img-box .box-title p {
    font-size: 16px;
  }

  .second-sec-content .second-heading {
    font-size: 35px;
  }

  section#hero-section:after {
    width: 200px;
    height: 200px;
  }

  .second-sec {
    margin-top: 80px;
  }
}

@media (max-width: 1024px) {
  section#hero-section::after {
    width: 80px;
    height: 70px;
  }
}

@media (max-width: 990px) {
  .background-img {
    background-position: bottom center;
    background-size: auto;
  }

  .second-sec {
    margin-top: 70px;
  }

  h1.second-heading {
    text-align: center;
    font-size: 35px !important;
  }

  .img-boxes .img-box {
    width: 160px;
    height: 160px;
    gap: 10px;
    padding: 10px;
  }

  .img-box .box-title p {
    font-size: 12px;
  }

  .img-boxes .img-box:nth-child(2),
  .img-box:nth-child(4) {
    margin-top: 0px !important;
  }
}

@media (max-width: 768px) {
  #hero-section {
    padding-bottom: 30px;
  }

  .background-img-2 {
    height: 65%;
    margin-top: -50px;
  }

  .first-sec .sec-gif img {
    transform: scale(3.5);
  }

  .m-pad {
    padding-top: 60px;
  }

  .first-sec-content .main-heading {
    font-size: 23px;
    margin-bottom: 20px;
  }

  .first-sec-content .sub-heading {
    font-size: 14px;
  }

  p.description-content {
    line-height: 20px;
    margin-bottom: 7px;
    font-size: 10px;
  }

  .second-sec {
    margin-top: 20px !important;
  }

  .second-sec-content .second-heading {
    width: 100%;
    font-size: 18px !important;
    text-align: center;
  }

  .img-boxes {
    justify-content: space-between;
    gap: 10px;
  }

  .img-boxes .img-box {
    width: 120px;
    height: 120px;
    padding: 30px 10px;
    gap: 10px;
    border-radius: 10px;
  }

  .img-box .box-img {
    width: 50px;
  }

  .img-box .box-img img {
    width: 100%;
  }

  .img-boxes .box-title p {
    font-size: 10px !important;
  }

  .img-boxes .img-box:nth-child(2),
  .img-box:nth-child(4) {
    margin-top: 0px;
  }
}

@media (max-width: 565px) {
  .img-boxes .img-box {
    width: 22%;
    height: 70px;
    padding: 10px;
    gap: 10px;
    border-radius: 5px !important;
  }

  .img-box .box-img {
    width: 30px;
  }

  .img-boxes .box-title p {
    font-size: 5px !important;
  }
}

/* ==========Benefits========== */
#benefits,
#practice {
  padding: 100px 0px;
}

.benefit-content {
  color: var(--dark-color);
  text-align: center;
}

.benefit-content .ben-heading,
.practice-content .ben-heading,
.scalable-content .ben-heading {
  font-family: "Michroma_bold";
  font-size: 45px;
}

.ben-description {
  color: var(--dark-color);
  font-weight: 300;
}

.benefit-boxes {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 120px;
}

.benefit-img-back {
  background-color: var(--primary-color);
  padding: 5px;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-img-inner {
  border: 2px solid #fff;
  border-radius: 100px;
  padding: 19px;
}

.benefit-img-inner img {
  width: 40px;
}

.benefit-title p {
  font-family: "poppins";
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
}

.benefit-drone-outer {
  position: relative;
  display: flex;
  justify-content: center;
}

.benefit-drone-inner::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 45px;
  width: 370px;
  height: 370px;
  border: 4px solid var(--primary-color);
  border-radius: 100%;
  z-index: -1;
}

.benefit-drone-inner::after {
  content: "";
  position: absolute;
  top: 36px;
  left: 65px;
  width: 330px;
  height: 330px;
  border-radius: 100%;
  background-color: var(--primary-color);
  z-index: -1;
}

.benefit-drone-inner {
  width: 450px;
  text-align: center;
  position: relative;
}

.benefit-drone-inner img {
  width: 100%;
  transform: scale(1.3);
}

/* ==========Media Query========== */
@media (max-width: 990px) {
  .benefit-boxes {
    gap: 70px;
  }

  .benefit-img-back {
    width: 79px;
    height: 79px;
  }

  .benefit-img-inner {
    border: 2px solid #fff;
    border-radius: 100px;
    padding: 11px;
    width: 65px;
    height: 65px;
  }

  .benefit-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  #benefits {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .benefit-content .ben-heading,
  .practice-content .ben-heading,
  .scalable-content .ben-heading {
    font-size: 25px;
  }

  .benefit-boxes {
    gap: 50px;
  }

  .benefit-drone-inner img {
    transform: scale(1.2);
  }

  .benefit-drone-inner::before {
    top: 35px;
    left: 55px;
    width: 77%;
    height: 77%;
  }

  .benefit-drone-inner::after {
    top: 50px;
    left: 70px;
    width: 70%;
    height: 70%;
  }

  .benefit-title p {
    font-size: 12px;
    text-align: left;
  }

  .benefit-img-back {
    width: 62px;
    height: 62px;
  }

  .benefit-img-inner {
    padding: 10px;
    height: 50px;
    width: 50px;
  }

  .benefit-img-inner img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 540px) {
  .benefit-drone-inner img {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .benefit-drone-inner {
    width: 100% !important;
  }

  .benefit-drone-inner::before {
    top: 55px;
    left: 67px;
    width: 66%;
    height: 66%;
  }

  .benefit-drone-inner::after {
    top: 70px;
    left: 83px;
    width: 58%;
    height: 58%;
  }

  .benefit-drone-inner img {
    transform: scale(1) !important;
  }
}

/* =====Services===== */
#services,
#optimization {
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
}

#services::before,
#optimization::before {
  content: "";
  background-color: var(--secondary-color);
  position: absolute;
  top: -1px;
  right: 0;
  width: 150px;
  height: 150px;
  clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
}

#services::after,
#optimization::after {
  content: "";
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 150px;
  height: 150px;
  clip-path: polygon(0% 100%, 0% 0%, 100% 100%);
}

#services .service-circle {
  background-color: var(--primary-color);
  width: 400px;
  height: 400px;
  border-radius: 100%;
  position: absolute;
  top: 30px;
  right: -120px;
  z-index: -1;
}

.service-drone {
  position: absolute;
  top: 220px;
  right: 0;
  width: 420px;
}

.service-drone img {
  width: 100%;
}

.service-back-img::before {
  content: "";
  background-image: url(../images/drone/1.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.service-back-img::after,
.optimization-back-img::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-primary-color);
  opacity: 95%;
  z-index: -1;
}

.service-sec-content .service-heading-sec,
.optimization-sec-content .optimization-heading-sec {
  color: var(--secondary-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-heading-sec h2.sec-heading,
.optimization-heading-sec h2.sec-heading {
  font-family: "Michroma_bold";
  font-size: 45px;
}

.service-heading-sec p {
  width: 750px;
}

li.list-item {
  font-family: "Poppins", serif;
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0px;
}

ul.service-list,
ul.optimise-list {
  color: var(--secondary-color);
  font-weight: 500;
  list-style: none;
  padding: 0;
}

ul.service-list li.list-item,
ul.tech-list li.list-item {
  margin-bottom: 15px;
}

ul.service-list li.list-item::before,
ul.tech-list li.list-item::before,
ul.plan-list li.list-item::before,
ul.optimise-list li.list-item::before {
  content: url(../images/tick.png);
  margin-right: 15px;
}

/* ==========Media Query========== */
@media (max-width: 1024px) {
  .service-drone {
    position: absolute;
    top: 220px;
    right: 0;
    width: 360px;
  }

  #services::before,
  #services::after,
  #optimization::before,
  #optimization::after {
    width: 70px;
    height: 60px;
  }
}

@media (max-width: 768px) {

  #services,
  #optimization {
    padding: 60px 0px;
  }

  .service-drone {
    position: absolute;
    top: 185px;
    right: 0;
    width: 250px;
    z-index: -1;
  }

  #services .service-circle {
    width: 300px;
    height: 300px;
  }

  .service-sec-content .service-heading-sec {
    align-items: center;
  }

  .service-heading-sec h2.sec-heading {
    font-size: 25px;
  }

  .service-heading-sec p {
    width: auto;
  }

  li.list-item {
    margin: 0 !important;
  }

  ul.optimise-list li.list-item,
  ul.plan-list li.list-item {
    font-size: 11px !important;
    font-weight: 400;
  }
}

@media (max-width: 488px) {
  .service-drone {
    width: 230px !important;
  }
}

/* =====Technology===== */
#technology,
#planning {
  padding: 100px 0px;
}

.technology-img {
  width: 500px;
  position: relative;
}

.technology-img img {
  width: 100%;
}

.tech-circle-text {
  background-color: var(--primary-color);
  padding: 22px;
  border: 7px solid #fff;
  border-radius: 100%;
  width: 230px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: -60px;
}

.tech-circle-text p {
  text-align: center;
  font-size: 15px;
}

.technology-content h2.tech-heading,
.planning-content h2.plan-heading {
  font-family: "Michroma_bold";
  font-size: 45px;
}

.technology-content p,
.planning-content p {
  color: var(--dark-color);
  font-weight: 300;
  padding: 0;
}

ul.tech-list,
ul.plan-list {
  color: var(--dark-color);
  font-family: "Poppins", serif;
  font-weight: 500;
  list-style: none;
  padding: 0;
}

/* ==========Media Query========== */
@media (max-width: 1024px) {

  #technology,
  #planning {
    padding: 60px 0px;
  }

  .technology-img {
    width: auto !important;
    text-align: center;
  }

  .technology-img img {
    width: 95%;
  }

  .tech-circle-text {
    top: -29px;
    right: 5px;
    width: 200px;
    height: 200px;
  }

  .tech-circle-text p {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .technology-content h2.tech-heading {
    font-size: 25px;
  }

  .tech-circle-text {
    top: -29px;
    right: 5px;
    width: 160px;
    height: 160px;
    border: 4px solid #fff;
  }
}

/* ==========Footer========== */
#footer {
  background-color: var(--dark-color);
  padding: 10px 0px;
}

.footer-copyright p {
  text-align: center;
  font-size: 18px;
}

.footer-copyright p a:hover {
  color: var(--primary-color);
}

/* ==========Risk Page========== */
#hero-section.risk-consultancy::after,
#hero-section.security-guarding::after {
  content: "";
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 150px;
  height: 150px;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
  z-index: -1;
}

.risk-back-img,
.security-back-img {
  background-image: url(../images/risk-consultancy/1st-sec-back.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.risk-back-img::before,
.security-back-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--dark-primary-color);
  opacity: 99%;
}

.background-img-2.risk-back-img-2 {
  height: 78% !important;
}

.over-hiden {
  overflow: hidden;
}

.risk-analys-img {
  width: 100%;
}

.risk-analys-img img {
  transform: scale(1.1);
  width: 100%;
}

.risk-sec-2nd {
  margin-top: 40px;
}

.risk.second-sec-content {
  padding-right: 50px;
}

.risk p {
  font-weight: 300;
}

.risk .risk-2nd-desc {
  margin-bottom: 50px;
}

.risk-boxes .img-box {
  margin-top: 0px !important;
  height: 190px;
}

.risk-boxes .risk-box-back {
  height: 220px;
  width: 100% !important;
}

.risk-boxes .img-box {
  width: 48.5%;
}

/* .risk-boxes .risk-box-back {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
} */

/* .risk-boxes .img-box.risk-box-back:hover,
.img-box.back:hover {
  background-color: var(--transparent-color) !important;
  border: 1px solid var(--secondary-color) !important;
} */

.risk-box-back .box-title p {
  font-size: 24px;
  font-weight: 500;
}

.img-box {
  transition: .3s;
  cursor: pointer;
}

.img-box:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transform: translateY(-5px);
  /* transition: .3s; */
}

.img-box:hover .box-title p,
.img-box:hover h4 {
  color: var(--secondary-color);
}

.img-box:hover .box-img img,
.img-box:hover .img img {
  filter: brightness(0) invert(1);
}

/* =====Media Query===== */
@media (max-width: 990px) {
  section#hero-section.risk-consultancy {
    padding-bottom: 100px;
  }

  section#hero-section.risk-consultancy:after,
  #hero-section.security-guarding::after {
    width: 100px;
    height: 100px;
  }

  section#hero-section.risk-consultancy .first-sec {
    padding-top: 60px;
  }

  .risk-sec-2nd {
    margin-top: 20px;
  }

  .risk.second-sec-content {
    padding: 0;
  }

  .risk-consultancy .m-pad,
  .security-guarding .m-pad {
    padding-top: 40px;
  }

  .practice-content {
    width: 100%;

  }

  .risk-analys-img img {
    transform: scale(2.1);
  }

  .over-hiden {
    overflow: visible;
  }
}

@media (max-width: 768px) {

  section#hero-section.risk-consultancy:after,
  #hero-section.security-guarding::after {
    width: 70px;
    height: 70px;
  }

  .background-img-2.risk-back-img-2 {
    height: 80%;
    margin-top: -180px;
  }

  .risk-analys-img img {
    transform: scale(2);
  }

  .risk-boxes .img-box,
  .risk-boxes .risk-back {
    width: 31.5% !important;
    height: 100px;
  }

  .risk-boxes .img-box .box-img {
    width: 50px;
  }

  .risk-boxes .box-title p {
    font-size: 7px !important;
  }

  .practice-content .ben-heading,
  .optimization-heading-sec h2.sec-heading,
  .planning-content h2.plan-heading,
  .scalable-content h2.ben-heading {
    font-size: 21px;
    margin-bottom: 15px !important;
    text-align: center;
  }
}

@media (max-width: 480px) {

  .risk-boxes .img-box,
  .risk-boxes .risk-back {
    width: 31% !important;
    height: 80px;
  }

  .risk-boxes .img-box .box-img {
    width: 35px;
  }
}

/* ==========Practice Section========== */
.practice-content {
  width: 950px;
}

.practice-content .ben-heading {
  margin-bottom: 25px;
}

.practice-card-row {
  margin-top: 40px;
}

.practice-card {
  text-align: center;
  padding: 30px;
  border: 1px solid var(--dark-color);
  border-radius: 20px;
  height: 220px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.practice-card .prac-card-title h4 {
  font-weight: 600;
  font-family: "poppins";
}


/* =====Media Query===== */
@media (max-width: 990px) {
  #practice {
    padding: 60px 0px;
  }
}

@media (max-width: 768px) {
  .practice-card {
    padding: 8px;
    height: 100px;
    gap: 10px;
    border-radius: 10px;
  }

  .practice-card .img {
    width: 32px;
  }

  .practice-card .img img {
    width: 100%;
  }

  .practice-card .prac-card-title h4 {
    font-size: 12px;
  }
}

/* ==========Optimization Section========== */
.optimization-back-img {
  content: "";
  background-image: url(../images/risk-consultancy/optimiztion\ section.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.left-logo {
  width: 290px;
  position: absolute;
  left: -145px;
  z-index: -1;
}

.right-logo {
  width: 290px;
  position: absolute;
  right: -145px;
  z-index: -1;
}

.left-logo img,
.right-logo img {
  width: 100%;
  opacity: 0.3;
}

/* ==========Media Query========== */
@media (max-width: 990px) {
  .left-logo {
    width: 170px;
    position: absolute;
    left: -85px;
    z-index: -1;
  }

  .right-logo {
    width: 170px;
    position: absolute;
    right: -85px;
    z-index: -1;
  }

  li.list-item {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  li.list-item {
    font-size: 12px;
  }
}

/* @media (max-width: 768px) {
  li.list-item {
    font-size: 14px !important;
  }
} */

/* ==========Strategy Planning========== */
.planning-img {
  width: 100%;
  position: relative;
  padding-left: 70px;
}

.planning-img::before {
  content: "";
  background-color: #000000;
  height: 100px;
  width: 2px;
  position: absolute;
  top: 22%;
  left: 54.4%;
  z-index: -1;
}

.planning-img img {
  width: 100%;
}

.planning-img img.board-gid {
  width: 35%;
  position: absolute;
  left: 37%;
  top: 31%;
  mix-blend-mode: darken;
}

/* =====media query===== */
@media (max-width: 480px) {
  /* .planning-content .plan-list li.list-item {
    font-size: 9px !important;
  } */
}

@media (max-width: 768px) {

  h2.plan-heading,
  .planning-content p {
    text-align: center;
  }

  .planning-img img.board-gid {
    width: 40% !important;
    left: 30% !important;
    top: 34% !important;
  }

  .planning-img::before {
    height: 25% !important;
    width: 2px !important;
    top: 19% !important;
    left: 49.7% !important;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  .planning-img::before {
    height: 16% !important;
    width: 2px !important;
    top: 26% !important;
    left: 49.4% !important;
  }

  .planning-img img.board-gid {
    width: 35% !important;
    left: 32% !important;
    top: 34% !important;
  }
}

@media (max-width: 1024px) {
  .planning-img {
    padding: 0;
  }
}

@media (min-width: 990px) and (max-width: 1024px) {
  .planning-img::before {
    height: 16% !important;
    top: 17% !important;
    left: 49.3% !important;
  }

  .planning-img img.board-gid {
    width: 35% !important;
    left: 32% !important;
    top: 27% !important;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .planning-img img.board-gid {
    width: 35% !important;
    left: 40% !important;
    top: 21% !important;
  }

  .planning-img::before {
    height: 10% !important;
    width: 2px !important;
    top: 17% !important;
    left: 57.3% !important;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .planning-img img.board-gid {
    width: 35%;
    left: 39%;
    top: 29%;
  }

  .planning-img::before {
    height: 12%;
    top: 25%;
    left: 56.3%;
  }
}

/* ==========Enhance Section========== */
.enhance {
  background-image: url(../images/risk-consultancy/enhance.png) !important;
}

.enhance-sec .sec-heading {
  width: 100%;
}

/* =====Media Query===== */
@media (min-width: 1024px) {
  .enhance-sec .sec-heading {
    width: 77% !important;
  }
}

/* ==========Improved Section========== */
.improved-img {
  width: 100%;
  position: relative;
  padding-right: 70px;
}

.improved-img img {
  width: 100%;
}

.improved-img img.lock-img {
  width: 30%;
  position: absolute;
  left: 29%;
  top: 35%;
}

img.key {
  width: 3%;
  position: absolute;
  top: 57%;
  left: 42%;
}

/* ==========Media Query========== */
/* @media (max-width: 768px) {
  img.key {
    width: 3%;
    position: absolute;
    top: 54%;
    left: 48%;
  }
} */
@media (max-width: 990px) {
  .improved-img {
    padding: 0 !important;
  }

  .improved-img img.lock-img {
    width: 30%;
    position: absolute;
    left: 35% !important;
    top: 35% !important;
  }

  img.key {
    width: 3%;
    position: absolute;
    top: 54% !important;
    left: 48% !important;
  }
}

@media (max-width: 1200px) {
  .improved-img img.lock-img {
    width: 30%;
    position: absolute;
    left: 28%;
    top: 35%;
  }

  img.key {
    top: 57%;
    left: 41.5%;
  }
}

/* ==========Scaleable========== */
.scale-margin {
  margin-bottom: 100px;
}

.scale-imges {
  position: relative;
  width: 100%;
  text-align: center;
}

.scale-imges .curve img {
  width: 100%;
}

.scale-img-box-outer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.scale-img-boxes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  /* position: absolute;  */
}

.scale-img-box {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  padding: 20px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scale-img-box::after {
  content: "";
  position: absolute;
  border: 2px solid #fff;
  width: 65px;
  height: 65px;
  border-radius: 100px;
}

.scale {
  margin-top: -45px;
  margin-left: -65px;
}

.continue {
  margin-top: -130px;
  /* left: 35%; */
}

.adapt {
  margin-top: -45px;
  margin-right: -65px;
}

.scale-img-box img {
  width: 100%;
}

.interview-img {
  width: 100%;
}

.interview-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* =====media Query===== */
@media (min-width: 1200px) and (max-width: 1400px) {
  .continue {
    margin-top: -120px;
  }
}

@media (max-width: 1200px) {
  .continue {
    margin-top: -105px;
  }
}

@media (max-width: 990px) {
  .scale-margin {
    margin-bottom: 50px;
  }

  .mobile-line {
    width: 85% !important;
  }

  .scale-img-boxes h5 {
    font-size: 12px;
    width: 70%;
  }

  .scale-img-box-outer {
    margin-top: -30px;
  }

  .scale {
    margin: 0;
  }

  .continue {
    margin: 0;
  }

  .adapt {
    margin: 0;
  }

  .scale-img-box {
    padding: 10px;
  }

  .scale .scale-img-box,
  .continue .scale-img-box,
  .adapt .scale-img-box {
    width: 50px;
    height: 50px;
  }

  .scale-img-box::after {
    width: 45px;
    height: 45px;
  }

  .interview-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .interview-img img {
    width: 100%;
    height: 265px;
    object-fit: cover;
  }
}

/* ==========Security Guarding========== */
.secure-img {
  margin-top: -130px;
  height: 79% !important;
}

/* .secure-img::after {
  content: "";
  width: 100%;
  height: 120%;
  position: absolute;
  background: var(--dark-primary-color) !important;
  opacity: .8;
} */

.security-back-img {
  background-image: url(../images/security/first-sec-back.png) !important;
}

.security-shield-img {
  text-align: center;
}

.security-shield-img img {
  width: 85%;
  /* transform: scale(1.2); */
}

.guard-logo-img {
  width: 100%;
  position: relative;
}

.guard-logo-img img {
  width: 100%;
}

.secure-content .secure-description {
  color: var(--dark-color);
  font-family: "Michroma";
  font-size: 27px;
}

img.person {
  width: 30% !important;
  position: absolute;
  left: 35%;
  top: 35%;
}

/* =====Media Query===== */
@media (max-width: 480px) {
  .first-sec {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .secure-img {
    height: 79% !important;
    margin-top: -180px;
  }

  .security-shield-img img {
    width: 85%;
    transform: scale(2);
  }

  .secure-content .secure-description {
    color: var(--dark-color);
    font-family: "Michroma";
    font-size: 14px;
    text-transform: capitalize;
    line-height: 25px;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  .security-shield-img img {
    width: 85%;
    transform: scale(1.7);
  }
}

/* ==========Privacy Policy========== */
.privacy-policy {
  padding: 100px 0px;
  font-family: "Michroma_bold";
  font-weight: 600;
}

.privacy-policy h1 {
  text-align: center;
  font-size: 45px;
  margin-bottom: 50px;
}

.privacy-policy h2 {
  margin-bottom: 30px;
}

.privacy-policy p {
  font-size: 22px;
  text-align: left;
  line-height: 30px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.privacy-policy .privacy-points {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 40px;
  color: var(--dark-color);
}

.privacy-policy p a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 400;
  transition: color .3s;
}

.privacy-policy p a:hover {
  color: var(--primary-color);
}

/* ==========Contact Us Page========== */
.social-icons ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  color: var(--secondary-color);
}

.contact-form input,
.contact-form textarea {
  background-color: var(--transparent-color) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  font-family: "Poppins", serif !important;
}

.contact-form label {
  display: none;
}

.btn-custom {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  padding: 10px 20px !important;
  border-radius: 100px !important;
  font-family: "Poppins", serif !important;
  font-weight: 500 !important;
}

.btn-custom:hover {
  background-color: var(--transparent-color) !important;
  backdrop-filter: blur(20px) !important;
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
  transition: background-color .3s, color .3s !important;
}

/* ==========Media Query========== */
@media (max-width: 768px) {
  .privacy-policy {
    padding: 60px 0px;
  }

  .privacy-policy h1 {
    font-size: 40px;
    margin-bottom: 30px;
  }
}

/* ==========Footer========== */
@media (max-width: 768px) {
  .footer-copyright p {
    font-size: 12px;
  }
}