/*Universal Selector*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Site Gloabl-conatiner*/
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

/*Sarala-fonts*/
@import url('https://fonts.googleapis.com/css2?family=Sarala:wght@400;700&display=swap');

/*inter-fonts*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;600&display=swap');

/*color-plates*/
:root {

  --primary-color: #00adef;
  --dark-color: #000;
  --gray-color: #141414;
  --white-color: #fff;

}

/*global-color*/
.blue {
  color: var(--primary-color);
}

.black {
  color: var(--secondary-color);
}

.dark {
  color: var(--gray-color);
}

.white {
  color: var(--white-color);
}

/*backgroung-color*/
.bg-gray {
  background-color: var(--gray-color);
}

.bg-dark {
  background-color: var(--dark-color);
}


/*global-classes*/
.w-49 {
  width: 80%;
}

img {
  width: 100%;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.space-btween {
  justify-content: space-between;
}

.vrt-center {
  align-items: center;
}

.vrt-baseline {
  align-items: baseline;
}

.row-padding {
  padding: 70px 0px;
}

.flex-direction {
  flex-direction: row-reverse;
}


.gloabl-btn {
  color: var(--dark-color);
  background-color: var(--primary-color);
  padding: 14px 20px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  border-radius: 4px;
  border: none;

}

.gloabl-btn:hover {
  background-color: #059ed9;
}


/*global-fonts*/
body {
  font-family: 'Inter', sans-serif;
}

h1 {
  font-size: 56px;
  color: var(--white-color);
}

h2 {
  font-size: 38px;
  color: var(--white-color);
  text-transform: capitalize;
}

h3 {
  font-size: 24px;
  color: var(--white-color);
}

h4 {
  font-size: 20px;
  color: var(--primary-color);
  text-transform: capitalize;
  padding-bottom: 10px;
}

h5 {
  font-size: 14px;
  color: var(--white-color);
  text-transform: capitalize;
  padding-bottom: 10px;
}



p {
  font-size: 16px;
  color: #a3a2a2;
  font-family: 'Sarala', sans-serif;
  line-height: 1.7;
}

.pt-20 {
  padding-top: 20px;
}

.ptpb {
  padding-block: 20px;
}


#width-100 {
  width: 100% !important;
}

.flex-dr-col {
  flex-direction: column;
}




/*start header css here*/
.header {
  padding: 20px 40px;
}

.header .logo {
  width: 70px;
}

.header .nav-bar li {
  /* padding: 0px 15px; */
  font-size: 17px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  text-align: right;
}

.header .nav-bar ul {
  gap: 25px;
}

.header .nav-bar li a {
  color: var(--white-color);
  font-weight: 400;
  font-size: 16px;
}

.toggle-nav {
  color: #fff;
  display: none;
}

.close_nav {
  display: none;
}


.sticky-header {
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  transition: .5s;
  width: 100%;

  /* Additional styling for your header */
}

/*start-banner*/
.banner-img {
  background-image: linear-gradient(180deg, rgb(0 0 0 / 10%), rgb(0 0 0)), url(../images/banner.jpg);
  padding: 150px 0px;

  background-repeat: no-repeat;
  background-size: cover;
}

.banner .left-content h1 {
  margin: 0px 0 13px 0px;
}

.banner .banner-content .left-content .contact {
  margin-left: 30px;
}

.banner .banner-content .left-content .contact span {
  font-weight: 600;
}

.banner .banner-content .left-content .flex {
  margin-top: 18px;
}

.banner .banner-content .left-content {
  width: 50%
}

.banner .banner-content .right-content {
  text-align: right;
}

.banner .banner-content .right-content h2 {
  margin-top: 30px;
}


/*start-benefits*/
.benefits {
  padding: 20px 0px 70px 0px;
}


.benefits .container .box {
  border: 1px solid #00adef45;
  width: 24%;
  padding: 20px;
  background-color: var(--gray-color);
  cursor: pointer;
}

.benefits .container .box:hover {
  background-color: var(--white-color);
  transition: 0.5s;
  /* box-shadow: #939191 1px 1px 1px 2px; */
}

.benefits .container .box:hover img {
  filter: grayscale(1);
}

.benefits .container .box:hover h4 {
  color: #262626;
}

.benefits .container .box:hover p {
  color: #262626;
}


.benefits .container .box .icon {
  width: 24%;
  margin-bottom: 0px;
}

.benefits .container .box h4 {
  padding-block: 10px;
  font-weight: 600;
}


/*start-about*/
.about .container .about-img {
  width: 48%;
}

.about .container .about-content {
  width: 48%;
}

/*.about .container .about-content h4 {padding-bottom:10px;}*/
.about .container .about-content .about-para {
  padding: 20px 0px 20px 0px;
}

.about .container .second-about {
  width: 100%;
}

.ptb {
  padding: 20px 0;
}

/*.about .container .about-content .gloabl-btn {
  margin-top: 10px;
}*/

.fa-quote-left {
  font-size: 62px;
  color: var(--primary-color);
  margin-right: 10px;
}

/*start-brands*/
.Brands .container .logos div {
  width: 160px;
}

.Brands .container .logos {
  gap: 25px;
}

.Brands .container .brands-content p {
  margin-top: 18px;
}


/*start-services*/
.services .container .m-top {
  margin: 20px 0px 40px 0px;
}

.services p {
  color: #a3a2a2;
}

.services h3 {
  font-size: 20px;
}

.services .container .main-box {
  width: 45%;
}

.services .container .main-box .Security .icon {
  width: 25%;
}

.services .container .main-box .content p {
  padding-top: 6px;
}

.services .container .main-box .Security .left-box {
  margin-left: 18px;
}

.services .container .main-box .Security .right-box {
  margin-right: 18px;
}

.services .container .main-box .m-top-bottom {
  margin: 60px 0px;
}

.services .container .Reactive-Services .center-icon {
  width: 60%;
  margin: 0 auto;
}

.service-img img {
  width: 80%;
}

.services .Reactive-Services h2 {
  font-size: 32px;
}

.service-main {
  margin-top: -50px;
}

.Security .icon img {
  width: 60px;
}

.service-menu {
  position: relative;
}

.service-menu {
  position: relative;
  padding: 20px 0px;
  transition: .5s;
}

.service-sub-menu ul {
  position: absolute;
  background-color: #262626;
  left: 0;
  width: 350px;
  display: none;
  margin-top: 20px;
}

.service-sub-menu ul a {
  color: #FFFFFF;
  width: 100%;
  display: inline-block;
  text-align: left;
  padding: 10px;
}

.service-sub-menu ul a:hover {
  background-color: #059ED8;
}

.service-menu:hover .service-sub-menu ul {
  display: inline-block;
}

.service-menu:hover .service-menu i {
  background: red;
}


/*start-counter*/
.counter {
  background-color: var(--primary-color);
}

.counter .Project {
  text-align: center;
}

.counter .Project span {
  font-size: 53px;
  font-family: 'Sarala', sans-serif;
  color: var(--white-color);
  font-weight: 700;
}

.counter .Project p {
  color: var(--dark-color);
  margin-top: 5px;
}


/*start-testmonials*/
.testimonials .upper-content .content p {
  margin: 10px 0px 40px 0px;
}

.testimonials .testimonial-slider .item {
  border: 1px solid #00adef45;
}

.testimonials .testimonial-slider .item {
  padding: 32px;
}

.testimonials .testimonial-slider .item .rating-img {
  width: 26%;
  margin-bottom: 20px;
}

.testimonials .testimonial-slider .item .about-rating .client-img {
  width: 13%;
}

.testimonials .testimonial-slider .item .about-rating {
  margin-top: 25px;
}

.testimonials .testimonial-slider .item .about-rating .client-name {
  margin: 0px 0px 0px 20px;
}

.testimonials .testimonial-slider .item .about-rating .client-name p {
  margin-top: -10px;
}

.testimonials .testimonial-slider .item .about-rating .fa-quote-left {
  font-size: 62px;
  color: var(--primary-color);
  position: absolute;
  right: 20px;
}


.mainTabContent p {
  color: #ffffff;
}

/*start-contact-information*/

.contact-information {
  width: 100%;
}

.contact-information .contact-deatils {
  width: 100%;
  max-width: 550px;
}

.contact-information .contact-from form {
  width: 100%;
  max-width: 550px;
  flex-direction: column;
  gap: 10px;
}

.contact-information .contact-deatils p {
  padding-right: 20px;
}

.contact-information .contact-deatils .location,
.number,
.email {
  gap: 20px;
  margin-top: 20px;
}



.contact-information .contact-deatils .location i {
  font-size: 25px;
  color: #fff;
  background-color: #00adef;
  border-radius: 50%;
  padding: 18px 18px;
}

.contact-information .contact-deatils .number i {
  font-size: 25px;
  color: #fff;
  background-color: #00adef;
  border-radius: 50%;
  padding: 18px 18px;
}


.contact-information .contact-deatils .about-contact {
  margin: 15px 0px;
}


.contact-information .contact-deatils .email i {
  font-size: 25px;
  color: #fff;
  background-color: #00adef;
  border-radius: 50%;
  padding: 18px 18px;
}

.contact-information .contact-from form input {
  padding: 15px 20px;
  border: 1px solid #00adef85;
  background-color: transparent;
  color: #fff;
}

.contact-information .contact-from form .half-input {
  gap: 10px;
}

.contact-information .contact-from form .half-input input {
  width: 50%;
}


textarea:focus,
input:focus {
  outline: none;
}

.contact-information .contact-from form textarea {
  padding: 15px 20px;
  color: #fff;
  border: 1px solid #00adef85;
  background-color: transparent;
}

.contact-information .contact-from form .form-btn input {
  background-color: #00adef;
  width: 100%;
  color: #000;
  padding: 17px 35px;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
}

/*end-contact-information*/


/* start cta-section  */

.cta-section {
  background-image: url(../images/cta.jpg);
  background-size: cover;
  background-position: center;
  padding: 0;
}

.cta-section .cta-content {
  width: 100%;
  max-width: 400px;
  padding: 70px 50px;
}

.cta-section .cta-content p {
  margin-block: 20px;
}

/* end cta-section  */


/* start-Footer-section  */



.footer-section .footer-main {
  width: 100%;
  gap: 20px;
}

.footer-section {
  background-position: center;
  background-size: contain;
  object-fit: cover;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../images/pngegg.png);
}

.footer-section .footer-main .footer-info {
  width: 34%;
}

.footer-section .footer-main .footer-info .footer-logo {

  width: 70px;
}


.footer-section .footer-main .footer-info p {
  margin-block: 15px;
  padding-right: 15px;
}

.footer-section .footer-main .footer-info h4 {
  color: #fff;
}

.footer-section .footer-main .footer-info i {
  color: #d1d1d1;
  margin-top: 10px;
}

/* .footer-section .footer-main .footer-info .fa-twitter {
  margin: 0px 17px;
} */

.footer-section .footer-main .footer-info .social-media i {
  font-size: 20px;
}



.footer-section .footer-main .footer-nav {
  width: 22%;
}

.footer-section .footer-main .footer-nav h4 {
  color: #fff;
}

.footer-section .footer-main .footer-nav ul {
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.footer-section .footer-main .footer-nav ul li a {
  color: #d1d1d1;
}



.footer-section .footer-main .fa-long-arrow-right {
  font-size: 15px;
  color: var(--white-color);
  margin-right: 10px;
}


.footer-section .footer-main .footer-info-links {
  width: 22%;
}

.footer-section .footer-main .footer-info-links h4 {
  color: #fff;
}

.footer-section .footer-main .footer-info-links ul {
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.footer-section .footer-main .footer-info-links ul li a {
  color: #d1d1d1;
}

.footer-section .footer-main .footer-contact h4 {
  color: #fff;
}

.footer-section .footer-main .footer-contact .contact-details .phn {
  gap: 20px;
}

.footer-section .footer-main .footer-info-links {
  width: 39%;
}


.footer-section .footer-main .footer-contact .contact-details .phn i {
  font-size: 20px;
  color: #fff;
}

.footer-section .footer-main .footer-contact .contact-details .number i {
  font-size: 20px;
  color: #fff;
}

.footer-section .footer-main .footer-contact .contact-details .email i {
  font-size: 20px;
  color: #fff;
}

.footer-section .footer-main .copyright {
  background-color: #000;
  padding: 15px 0;
}


.copyright-section {
  background-color: #000;
  padding: 20px 0;

}

.copyright-section .copyright p {
  text-align: center;
  font-weight: 200;
}


/* about-page-css */

.banner-about-img {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../images/aboutus-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px 100px 0px;
}

.about-section-2 .pb {
  padding-bottom: 70px;
}


.pb {
  padding-bottom: 70px;
}


.about-para_02 .container.flex.space-btween {
  flex-direction: column-reverse;
}

.about-para_02 .container .about-content {
  width: 100%;
}

.about-para_02 .container .about-img {
  width: 70%;
  text-align: center;
  margin: 0 auto;
}

.about-section-3 {
  background-color: #000;
}


.about-my {

  padding-bottom: 0px
}

.about_my_03 p {
  padding: 8px 0px;
}

.about-section-3 .about-para-3 {
  padding: 20px 0px !important;
}

/* about-page-css-end */

.why-choose-us .container {
  padding-block: 70px 50px;
}

.why-choose-us .about-content {
  width: 100% !important;
}

/* Why choose us page css */

.why-choose-us-about-sec-2 .about-content-left {
  background-color: #000;
  width: 35%;
}

.why-choose-us-about-sec-2 .about-content-row {
  background-color: #222222;
  width: 100%;
}

.why-choose-us-about-sec-2 .about-content-left .para-bdr {
  border: 1px solid #272727;
  padding: 12px;
  font-size: 18px;
  color: #fff;
}

.why-choose-us-about-sec-2 .about-content-left .active {
  background-color: #00adef;
}

.why-choose-us-about-sec-2 .about-content-left .para-bdr:hover {
  background-color: #00adef;
  cursor: pointer;
}

.why-choose-us-about-sec-2 .about-content p {
  display: none;
}

.why-choose-us-about-sec-2 .about-content .activeTab {
  display: block;
}

.why-choose-us-about-sec-2 .about-content {
  width: 65% !important;
  margin-left: 15px;
  padding: 10px;
}


.why-choose-us-about-sec-3 {
  padding: 40px 0px;
}

/* Why choose us page end css */

/* partner with us css */

.Partner-page-about-2 .container {
  padding-block: 0px 70px;
}

/* partner with us css */



/* service page css */
.service-page {
  background-color: #000;
}

.service-page .service-box-row {
  gap: 25px;

}

.service-page .service-box-row .service-col {
  background-color: #262626;
  width: 100%;
  max-width: 350px;
  padding: 30px 10px;
}

.service-page .service-box-row .service-col p {
  padding: 15px 20px;
}

.service-page .service-box-row .service-col a {
  color: #fff;
}

.service-page .service-box-row .service-col i {
  color: #fff;
  margin-left: 5px;
}

.service-page .service-box-row .service-img img {
  width: 100%;
  max-width: 64px;
  padding-bottom: 15px;
}

.service-page-about-3 .para-with-color-row {
  gap: 20px;
  flex-wrap: wrap;
  margin-top: px;
}

.service-page-about-3 .para-with-color-row p {
  background-color: #262626;
  padding: 10px;
  /* margin-top: 10px; */
  width: 48%;
  max-width: 540px;

}

/* service page css */


/*  smart-move page css */
.smart-move {
  background-color: #000;
}

.smart-move .service-box-row {
  gap: 25px;
  margin: 50px 0px 0px 0px;

}

.smart-move .service-box-row .service-col {
  background-color: #262626;
  width: 100%;
  max-width: 530px;
  padding: 30px 30px;
  transition: .3s;
  cursor: pointer;
}

.smart-move .service-box-row .service-col:hover {
  background-color: #00adef;
  color: #ffffff;
}

.smart-move .service-box-row .service-col:hover img {
  filter: brightness(0) invert(1);
}

.smart-move .service-box-row .service-col:hover p {
  color: #ffffff;
}

.smart-move .service-box-row .service-col p {
  padding: 15px 0px 0px;
}

.smart-move .service-box-row .service-col a {
  color: #fff;
}

.smart-move .service-box-row .service-col i {
  color: #fff;
  margin-left: 5px;
}

.smart-move .service-box-row .service-img img {
  width: 100%;
  max-width: 64px;
  padding-bottom: 15px;
}

.smart-move-about {
  padding: 0px 0px 70px;
}

.smart-move-about .smart-move-btn {
  margin-top: 30px;
}

/*  smart-move css */

/*  how-it-works-move page css */
.how-it-works-move {
  background-color: #000;
}

.how-it-works-move h4 {
  color: #ffffff;
  font-weight: 500;
  padding-bottom: 0px;
}

.how-it-works-move span {
  color: #ffffff;
  margin: 20px 0px 8px;
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
}

.how-it-works-move .service-box-row {
  gap: 40px;
  margin: 50px 0px 30px 0px;

}

.how-it-works-move .service-box-row .service-col {
  background-color: #262626;
  border-radius: 100%;
  width: 130px;
  height: 130px;
  /* padding: 30px 30px; */
  transition: .3s;
  margin: 0 auto;
}

.how-it-works-move .service-box-row .service-col:hover {
  background-color: #00adef;
  color: #ffffff;
}


.how-it-works-move .service-box-row .service-col:hover img {
  filter: brightness(0) invert(1);
}

.how-it-works-move .service-box-row .service-col:hover p {
  color: #ffffff;
}

.how-it-works-move .service-box-row .service-col p {
  padding: 15px 0px 0px;
}

.how-it-works-move .service-box-row .service-col a {
  color: #fff;
}

.how-it-works-move .service-box-row .service-col i {
  color: #fff;
  margin-left: 5px;
}

.how-it-works-move .service-box-row .service-img img {
  width: 100%;
  max-width: 50px;
  padding-bottom: 0px;
}

.how-it-works-move .row2 {
  background-color: #00adef;
  margin-top: 50px;
  padding: 20px;
}


.how-it-works-move .smart-move-btn {
  margin-top: 30px;
}

.how-it-works-about h4 {
  margin-block: 25px 5px;
}

.how-it-works-about-3 .para1 {
  margin-block: 10px 0px;
}

.how-it-works-about-3 p {
  margin-block: 20px;
}

.how-it-works-move .service-box-row .service-col.active img {
  filter: brightness(0) invert(1);
}

.how-it-works-move .service-box-row .service-col.active {
  background-color: #00adef;
  color: #ffffff;
}

.how-it-works-move .row2.mainTabContent {
  display: none;
}

.how-it-works-move .row2.mainTabContent.active {
  display: block;
  animation: opcityControl 1s ease-in-out;
}

.thankyou-page .banner {
  padding: 150px 0px;
}


.thankyou-page .contact-information,
.thankyou-page .cta-section {
  display: none;
}

@keyframes opcityControl {
  0% {
    opacity: .1;
  }

  100% {
    opacity: 1;
  }
}

.animate__animated .animate__backInRight {
  animation-duration: 2s;
}

/*  how-it-works-move css */



@media only screen and (max-width: 1124px) {
  .container {
    padding: 70px 40px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 32px;
  }

  .header .container {
    padding: 0px 0px;
  }

  .benefits .container .box {
    width: 49%;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-slider .item .about-rating .fa-quote-left {
    right: 0px;
  }
}

@media only screen and (max-width: 991px) {

  /* .container {padding: 0px;} */
  section.banner.banner-img {
    padding: 20px;
  }

  .benefits {
    padding: 20px;
  }

  section.about.bg-gray {
    padding: 20px;
  }

  .row-padding {
    padding: 20px;
  }

  .testimonials .upper-content .content p {
    margin: 0px;
  }

  .testimonials .upper-content .content p {
    margin: 0px;
    max-width: 574px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 1024px) {


  .service-page-about-3 .para-with-color-row p {
    max-width: 47%;
  }

  .pdtp-none {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .header .nav-bar li {
    font-size: 14px;
  }

  .header .nav-bar ul {
    gap: 15px;
  }

  .banner-img {
    padding: 70px 0px 50px 0px;
  }

  .benefits .container .box h4 {
    font-size: 17px;
  }

  .benefits .container .box p {
    font-size: 14px;
  }

  .benefits .container {
    gap: 15px;
    padding: 0px 40px;
  }

  .benefits {
    padding: 20px 0px 2 0px 0px;
  }

  .cta-section .cta-content-row {
    padding: 0px;
  }

  .footer-section .nav-bar ul li a {
    font-size: 14px;
  }

  .row-padding {
    padding: 0px;
  }

  .contact-information .contact-info i,
  p {
    font-size: 14px;
    margin-top: 10px;
  }

  .contact-details {
    margin-top: 20px;
  }

  #popup {
    padding: 0px 15px;
  }

  /* about page */

  .banner-about-img {
    padding: 120px 0px 0px 0px;
  }

  .how-it-works-move .service-box-row {
    gap: 25px;
  }

  .how-it-works-move .service-box-row .service-col {
    width: 120px;
    height: 120px;
  }

  .smart-move .service-box-row .service-col {

    max-width: 450px;
  }

}


@media only screen and (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  .container {
    padding: 0px;
  }

  /*.nav-bar{display:none;}*/
  .footer-section .nav-bar {
    display: block;
  }

  .banner-content.container {
    flex-direction: column;
  }

  .banner .banner-content .left-content {
    width: 100%;
  }

  .banner .banner-content .right-content {
    text-align: left;
    margin-top: 15px;
  }

  .row-padding {
    padding: 0px;
  }

  .about .space-btween {
    flex-direction: column;
  }

  .about .container .about-img,
  .about .container .about-content {
    width: 100%;
  }

  .Brands .space-btween {
    flex-direction: column;
  }

  .Brands {
    padding: 40px 0;
  }

  .blog {
    padding: 40px 15px;
  }

  .blog-content {
    flex-wrap: wrap;
  }

  .Brands .space-btween .brands-content {
    text-align: center;
  }

  .Brands .btn {
    margin-top: 15px;
  }

  .services .container .main-box {
    margin-top: 15px;
    width: 100%;
  }

  /*.Service{flex-direction:column;}*/
  .services {
    padding: 20px 20px;
  }

  .services .main-box {
    width: 100%;
  }

  .services .main-box .Security .icon {
    width: 15%;
  }

  .services .main-box-3 {
    margin-top: 65px;
  }

  .services .main-box-2 .Security .content {
    order: 2;
  }

  .services .main-box-2 .Security .content h3,
  .services .main-box-2 .Security .content p {
    text-align: left;
  }

  .services .main-box-2 .Security .icon {
    order: 1;
  }

  .services .container .main-box-2 .Security .icon {
    margin: 0px 0px 18px;
  }

  .services .container .main-box .icon {
    margin: 0px 0px 30px 0px;
    width: 200px;
  }

  /* .services .container .main-box .Security .right-box {margin-right: 35px;} */
  .services .container .main-box .Security {
    gap: 28px;
  }

  .services .main-box-3 .Security .content {
    margin-left: -15px;
  }

  .counter {
    padding: 30px 15px;
  }

  .footer-section.row-padding {
    padding: 20px;
  }

  /*.counter .container{flex-direction:column;}*/
  .counter .container .Project {
    padding: 10px 0px;
  }

  .testimonials {
    padding: 20px;
    text-align: center;
  }

  .testimonials .upper-content {
    flex-direction: column;
  }

  .testimonials .testimonial-slider {
    margin-top: 50px;
  }

  /*.contact-information .flex {padding:40px 0px;}*/
  .contact-information {
    padding: 30px 15px;
  }

  .contact-information .contact-deatils i {
    text-align: left;
  }

  .Reactive-Services {
    display: none;
  }

  .contact-information .contact-deatils .email i,
  .contact-information .contact-deatils .number i,
  .contact-information .contact-deatils .location i {
    padding: 10px 10px;
    font-size: 22px;
  }

  /*.footer-section .footer-main{flex-wrap:wrap;}*/
  .footer-section .footer-main .footer-info,
  .footer-section .footer-main .footer-nav,
  .footer-section .footer-main .footer-info-links,
  .footer-contact {
    width: 48%;
  }


  .header .btn a {
    display: none;
  }

  .banner-about-img {
    padding: 50px 0px;
  }

  .benefits .container .box {
    width: 25%;
    padding: 15px;
  }

  .benefits .container .box .icon {
    width: 37%;
  }

  .benefits .container .box h4 {
    font-size: 12px;
  }

  .benefits .container {
    gap: 8px;
  }

  .benefits .container .box p {
    font-size: 12px;
  }

  .about-img img {
    width: 100%;
    max-width: 70%;
    height: 100%;
  }

  .counter .Project span {
    font-size: 40px;
  }

  section.about-section-3.row-padding {
    padding: 20px;
  }

  .Partner-page-about-2 .about-img img {
    height: 100%;
  }

  .banner-about-img {
    width: 100%;
    /* object-fit: cover; */
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../images/aboutus-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 70px 0px;
  }


  .service-menu .service-sub-menu ul li {
    margin-top: 10px;
  }

  .service-menu .service-sub-menu ul {
    margin-top: 0px;
  }

  .copyright p {
    font-size: 10px;
  }


  /* toggle nav bar */
  .toggle-nav {
    display: inline-block;
    font-size: 30px;
    margin-left: 15px;
  }

  .header .nav-bar>ul {
    padding: 30% 30px;
    display: block;
    position: fixed;
    transition: .5s;
    top: 0;
    height: 100vh;
    width: 100%;
    max-width: 320px;
    right: -100%;
    background: #050303;
    flex-direction: column;
    justify-content: start;
    z-index: 9999;
  }

  .header .nav-bar li {
    margin-top: 25px;
  }

  .header .nav-bar li {
    text-align: left;
  }

  .service-menu {
    padding: 0 0;
  }

  .close_nav {
    display: block;
    color: #fff;
    position: absolute;
    top: 25px;
    right: 33px;
    font-size: 30px;
  }

  .header .nav-bar>ul.active {
    right: 0;
  }

  .header .container {
    padding: 0 0;
  }

  .service-sub-menu ul {
    position: relative;
    background-color: #262626;
    left: 0;
    width: 350px;
    display: none;
    margin-top: 5px;
  }

  .footer-section {
    background-image: none;
  }


  /* toggle nav bar end*/

}

@media only screen and (max-width: 550px) {

  .header {
    padding: 10px 20px;
  }

  .header .logo img {
    width: 80%;
  }

  .about-img img {
    max-width: 100%;
  }

  .benefits .container {
    padding: 0px;
    flex-direction: column;
  }

  .benefits .container .box {
    margin-bottom: 0px;
    width: 100%;
  }

  .benefits .container .box .icon {
    width: 18%;
  }

  .Service.flex.space-btween {
    flex-direction: column;
  }

  .services .container .main-box .m-top-bottom {
    margin: 20px 0px;
  }

  .counter .Project span {
    font-size: 25px;
  }

  .counter .Project p {
    font-size: 12px;
  }

  .testimonials .testimonial-slider {
    margin-top: 20px;
  }

  .contact-information .container {
    flex-direction: column;
  }

  .contact-from.w-49.animate__animated.animate__slideInRight.animate__repeat-1.animate__slower {
    width: 100%;
    margin-top: 20px;
  }

  .footer-section .footer-main {
    flex-direction: column;
  }

  .footer-section .footer-main .footer-info,
  .footer-section .footer-main .footer-nav,
  .footer-section .footer-main .footer-info-links,
  .footer-contact {
    width: 100%;
  }

  .cta-section .cta-content {

    padding: 40px 20px;
    max-width: 100%;
  }

  section.banner.banner-img {
    padding: 50px 20px;
  }

  .container.flex.vrt-center.space-btween {
    flex-wrap: wrap;
    width: 100%;
  }

  .Project {
    width: 50%;
  }

  .service-page-about-3 .para-with-color-row {
    flex-direction: column;
  }

  .service-page-about-3 .para-with-color-row p {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
    margin-top: 10px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 17px;
  }

  .banner-about-img {
    padding: 60px 20px;
  }

  .w-49 {
    margin-top: 20px;
    width: 100%;
  }

}



@media only screen and (max-width: 320px) {

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 17px;
  }

  .banner .banner-content .right-content h2 {
    margin-top: 10px;
  }


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



/* ============ pricing ========== */

/* body{
  background-color: rebeccapurple;
} */


.pricing {
  background-color: #000;
  overflow-x: auto;
  width: 100%;
}


.pricing h2 {
  margin-top: 20px;


}



.pricing h2 span {

  font-size: 45px;
  color: #009AD7;

}


.pricing .gloabl-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 261px;
  margin: 20px auto;
}


.first {
  background-color: var(--primary-color);
}


.pricing-table-box {
  padding: 0px;
  margin: 0px;
  margin-top: 10px;
  width: 100%;
  border: 1px solid #00adef45;
}

.pricing-table-box td {
  border: 1px solid #00adef45;
  padding: 0px;
  border-left: 1px solid transparent;
}

.pricing-table-box .pricing-table-box-list td {
  padding: 10px 8px;
  font-weight: 500;
  text-align: center;
  font-size: 14px;
  background-color: var(--gray-color);
  color: #fff;
}

.pricing-table-box .pricing-table-box-list .glyphicon-ok {
  color: #68AF27;
}

.pricing-table-box .pricing-table-box-list .glyphicon-remove {
  color: #C22439;
}

.pricing-table-box .pricing-table-box-list td:first-child {
  font-weight: 400;
  text-align: left;
  border-left: 0px;
  font-size: 14px;
  color: #fff;
}

.pricing-table-box .pricing-table-box-list:nth-child(2n) td {
  background-color: var(--gray-color);
  color: #fff;
}

.pricing-table-box .pricing-table-box-text h2 {
  font-size: 25px;
  font-weight: 300;
  line-height: 30px;
  margin: 0px;
  padding: 0px;
  text-align: center;
  color: #ffffff;
}

.pricing-table-box .pricing-table-box-text p {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #666;
  margin-top: 10px;
}

.pricing-table-box .pricing-table-box-item {
  color: #FFF;
}

.pricing-table-box .pricing-table-box-item .pricing-table-box-item-head {
  padding: 10px 5px;
  text-align: center;
  /* background-color: #2ac4ea!important; */
  box-shadow: 0 -2px rgba(0, 0, 0, .1) inset;
  -moz-box-shadow: 0 -2px rgba(0, 0, 0, .1) inset;
  -webkit-box-shadow: 0 -2px rgba(0, 0, 0, .1) inset;
  -o-box-shadow: 0 -2px rgba(0, 0, 0, .1) inset;
}

.pricing-table-box .pricing-table-box-item .pricing-table-box-item-head p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 0px;
  color: #fff;
}

.pricing-table-box .pricing-table-box-item .pricing-table-box-item-price {
  padding: 15px 10px;
  text-align: center;
  color: #009AD7;
  /* background: #F9F9F9; */
}

.pricing-table-box .pricing-table-box-item .pricing-table-box-item-price p {
  font-size: 25px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 0px;
  color: #fff;
}

.pricing-table-box .pricing-table-box-item .pricing-table-box-item-price p span {
  font-size: 12px;
  font-weight: 300;
}

.pricing-table-box .pricing-table-box-item .pricing-table-box-item-price>span {
  font-size: 12px;
  font-weight: 400;
  color: #009AD7
}

.pricing-table-box .pricing-table-box-item .pricing-table-box-item-purchase {
  padding: 10px 5px;
  background: #FFF;
}



@media only screen and (max-width: 425px) {

  .pricing-table-box .pricing-table-box-text h2,
  .pricing-table-box .pricing-table-box-item .pricing-table-box-item-price p {
    font-size: 18px;
  }

  .pricing-table-box td {
    width: 500px !important;
  }

}






/*=============== pricing style =============*/

/*.banner.banner-pricing{*/
/*    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../images/banner_01.png);*/
/*}*/


.pricing .main {
  justify-content: center;
  margin-top: 5%;
  margin-bottom: 5%;
}

.service__price {
  font-size: 25px;
}

.pricing .pricing__table {
  display: block;
  padding-bottom: 20px;
  background-color: var(--gray-color);
  overflow: hidden;
  width: 300px;
  margin: 10px;
  border-radius: 3px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
  transform: scale(1);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.pricing .main .pricing__table:hover {
  transform: scale(1.05);
  z-index: 100;
}

.pricing .btn {
  display: flex;
  justify-content: center;
}

.heading {
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  font-weight: lighter;
  padding: 10px;
  font-size: 22px;
}

.service__price {
  color: #fff;
  text-align: center;
  font-size: 25px;
}


.pricing .features__list {
  list-style: none;
  display: block;
  margin: 20px auto;
  width: 80%;
}

.pricing .features__list li {
  color: #fff;
  text-align: center;
  display: block;
  text-transform: capitalize;
  font-weight: lighter;
  line-height: 41px;
  border-bottom: 1px solid #3a3939;
}

.pricing .heading-cell {
  display: flex;
  height: 140px;
  padding: 0px 10px;
  background-color: var(--primary-color);
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.pricing-note {
  margin-top: 20px;
  color: var(--primary-color);
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
  padding-top: 10px;

}

.col-01 {
  background-color: transparent !important;
}

.pricing__table.col-01 .heading-cell {
  height: 140px;
  background-color: transparent;
}

.container .pricing__table.col-01:hover {
  transform: none;
  z-index: 100;
}

.pricing__table.col-01 .features__list li {
  font-weight: 700;
}


@media screen and (min-width: 800px) {
  .second {
    display: none;
  }
}

@media screen and (max-width: 800px) {

  .pricing .features__list li {
    padding: 10px 0px;
    line-height: 25px;
  }

  /* .first_pricing{
                display: none;
            } */
  .second {
    padding: 30px 20px 30px 20px;
    display: block;
  }

  .second .main {
    flex-wrap: wrap;
  }

  .pricing .container .pricing__table {

    margin: 30px auto 30px auto;
    width: 100%;
    max-width: 72%;
  }
}

@media screen and (max-width: 425px) {

  .pricing .heading-cell {

    height: 120px;
  }

  .pricing .container .pricing__table {
    margin: 25px auto 25px auto;
  }

  .pricing .container .pricing__table {
    max-width: 100%;
  }

  .logo-popoup {
    width: 60px;
    padding-bottom: 20px;
  }

}



/*=========== popup ===========*/

/* CSS for the popup styling */

#popup .bg-pop {
  background-image: linear-gradient(90deg, #ffffffd9, #ffffffd9), url(../images/partner-with-us2-min.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 15px;
  position: relative;
}

#popup .content {
  padding-bottom: 80px;
}

#popup input.gloabl-btn {
  border-radius: 0px;
}


#popup {

  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*padding: 20px;*/
  /*background-color: #fff;*/
  /*border: 1px solid #ccc;*/
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
  z-index: 9999;

}



#closePopup {
  color: #fff;
  position: absolute;
  right: -13px;
  top: -13px;
  font-size: 25px;
  cursor: pointer;
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

}

#popup .content .sub {
  color: var(--white-color);
  border: 1px solid #adadad;
  display: flex;
  max-width: 562px;
  width: 100%;
  margin: auto;
}

#popup .content .sub .text-email {
  border: none;
  background-color: transparent;
  padding: 10px;
  padding: 5px 10px;
  width: 80%;
}

#popup .content h4 {
  margin: 30px 0px 10px 0;
}

#popup .content p {
  margin: 30px 0px 10px 0;
}

#popup .content .contact .phone {
  margin: 0;
  padding-top: 15px;
}


#popup .content h3 {
  color: #4a4a4a;
}

#popup .content h4 {
  color: #4a4a4a;
  font-weight: 400;
  font-size: 24px;
}

#popup .content p {
  color: #4a4a4a;
  font-size: 20px;
}


.logo-popoup {
  width: 80px;
}


.blog .blog-content {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.blog-col {
  padding: 15px;
  border-radius: 8px;
  transition: .2s ease;
}

.blog-col img {
  border-radius: 5px;
}

.blog-col h4 {
  margin-top: 10px;
  display: inline-block;
}

.blog-col:hover img {
  transition: .2s ease;
  filter: grayscale(1);
}

.blog .btn {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.blog-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.social-media {
  display: flex;
  gap: 18px;
}


/* =========== how it work ===== */


.work-steps {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.work-step-box {
  width: 100%;
  gap: 20px;
  justify-content: space-around;
  align-items: center;

  h3 {
    font-size: 30px;
    color: var(--primary-color);
  }

  .work-step-box-content {
    width: 44%;
  }

  .work-step-box-img {
    width: 33%;
  }
}






.work-step-box-img img {
  border-radius: 10px;
}

/* / <!-- -start cta- --> / */
.cta-work .content {

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-work .content a {
  width: 100%;
  max-width: 400px;
  align-self: center;

}


/* <!-- =========== response ========== --> */

/* .response{
  padding: 70px 0px;
} */
.response-box {
  width: 100%;
  padding: 70px 0px;
}

.response-content-box {
  width: 70%;
}

.response-img-box {
  width: 30%;
  text-align: center;
}

.response-img-box img {
  width: 250px;
}

.static-btn-group {
  margin-top: 30px;
}

.static-btn {
  color: var(--dark-color);
  background-color: var(--primary-color);
  padding: 14px 20px;
  /* text-transform: uppercase; */
  display: inline-block;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  margin: 5px;
}


/* <!-- =========== cam_spec ========== --> */

.cam_spec-box {
  width: 100%;
  padding: 70px 0px;
  justify-content: space-between;
}

.cam_spec-content-box {
  width: 40%;
}

.cam_spec-img-box {
  width: 40%;
  text-align: center;
}

.cam_spec-img-box img {
  width: 80%;
}


/* / <!-- -start-Security Products- --> / */


.securityproducts .main-boxes {

  margin-top: 20px;

}

.securityproducts .main-boxes a {


  width: 100%;
  max-width: 150px;
}

.securityproducts .main-boxes .box {

  width: 100%;
  max-width: 31%;
  border-radius: 10px;
  box-shadow: 0px 12px 18px -6px rgb(80 74 74 / 30%);
  background-color: #000;

}

.securityproducts .main-boxes .box img {
  border-radius: 10px;
}

.securityproducts .main-boxes .content {

  padding: 20px 15px;
}

.securityproducts .main-boxes .content ul {

  color: #a3a2a2;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-left: 30px;


}


.securityproducts .main-boxes .content ul li {
  list-style: disc;
  font-size: 16px;

}

.securityproducts .content {

  display: flex;
  flex-direction: column;
  gap: 20px;

}



.fine-box {
  width: 100%;
  padding: 70px 0px;
  justify-content: space-between;
}

.fine-content-box {
  width: 100%;
}

.fine-img-box {
  width: 40%;
  text-align: center;
}

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


@media only screen and (max-width: 550px) {

  .work-step-box {
    flex-direction: column-reverse;
    gap: 15px;
    text-align: center;

    h3 {
      font-size: 20px;
      text-align: center;
    }

    .work-step-box-content,
    .work-step-box-img {
      width: 100%;
    }

    img {
      width: 70%;
    }
  }

  .cta-work {
    padding: 20px 15px;

    .content {
      gap: 10px;
    }

    a {
      font-size: 14px;
      max-width: 315px;
    }
  }

  .response {

    .response-box {
      padding: 30px 15px 0px;
      flex-direction: column;
    }

    .response-box>div {
      width: 100%;
      text-align: start;
    }

    .static-btn {
      font-size: 14px;
    }

    img {
      width: 150px;
    }

    .static-btn-group {
      margin-top: 15px;
    }
  }
  .pricing{
    padding: 30px 15px;

    h2{
      margin-top: 0px;
    }
    h3{
      margin-top: 20px;
    }
  }
  .pricing h2 span{

      font-size: 30px;
    
  }
}