* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #3076ec;
  --light: #ffffff;
  --dark: #051108;
  --primary: #051108;
  --secondary: #525368;
}

/* :root { 
  --primary: #348E38;
  --secondary: #525368;
  --light: #E8F5E9;
  --dark: #272e2b;
} */
.font-secondary {
  font-family: "Pacifico", cursive;
}

.display-4 {
  font-size: 2rem !important;
}

.text-primary {
  color: var(--red) !important;
}

h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.btn {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary {
  color: #ffffff;
}

.btn-primary:hover {
  color: var(--red);
  background: transparent !important;
}

.border-inner {
  position: relative;
}

.border-inner * {
  position: relative;
  z-index: 1;
}

.border-inner::before {
  position: absolute;
  content: "";
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  background: none;
  border: 1px solid var(--light);
  z-index: 0;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 10px;
  border-radius: 0;
  z-index: 99;
}

.back-to-top i {
  font-size: 20px;
  font-weight: 300;
}

.navbar-dark .navbar-nav .nav-link {
  font-family: "Oswald", sans-serif;
  padding: 30px 15px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--light);
  outline: none;
  transition: 0.5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

.section-title::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 10px;
  left: 50%;
  bottom: 0;
  margin-left: -30px;
  background: var(--red);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 2px;
  left: 50%;
  bottom: 4px;
  margin-left: -90px;
  background: var(--red);
}

/* contact */
.service::after,
.contact::after {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 45px);
  top: 135px;
  left: 0;
  background:
    linear-gradient(rgba(14, 14, 14, 0.9), rgba(18, 18, 18, 0.9)),
    url(../img/data-cable.webp) center center no-repeat !important;
  background-size: cover;
  z-index: -1;
}

.contact::after {
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(15, 15, 14, 0.8)),
    url(../img/data-cable.webp) center center no-repeat;
  background-size: cover;
}

.bg-offer {
  background:
    linear-gradient(rgba(7, 7, 7, 0.9), rgba(27, 27, 27, 0.9)),
    url(../img/bg-cable.webp) center center no-repeat;
  background-size: cover;
}

.bg-img {
  background:
    linear-gradient(rgba(15, 15, 15, 0.8), rgba(16, 16, 16, 0.9)),
    url(../img/bg-cable.webp) center center no-repeat;
  background-size: cover;
  height: 300px;
}

ul {
  margin-bottom: 0;
}

.contact .contact-box {
  min-height: 250px;
}

/*** Navbar ***/
.navbar-section {
  font-family: poppins;
  padding: 10px 0px;
  background: linear-gradient(70deg, white 10% 31%, #3076ec 28% 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  color: var(--light);
  position: relative;
}

.navbar-section2 {
  background-color: var(--red);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
  text-align: start !important;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: var(--light);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

/* .navbar-light .navbar-nav {
    text-align: end !important;
} */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 700px) {
  .navbar-light .navbar-nav {
    /* text-align: end !important; */
    border-top: 1px solid var(--light);
  }
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid var(--light);
  }
}

.navbar-light .navbar-nav .nav-link {
  color: var(--light);
  font-weight: 500;
}

.navbar .nav-item .dropdown-menu {
  z-index: 9999 !important;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    text-align: start !important;
    z-index: 9999 !important;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
    text-align: start !important;
    z-index: 999999 !important;
  }
}

.location_icon_bottum {
  position: absolute !important;
  right: 191px;
  top: 1px;
  z-index: 999 !important;
  background: var(--red);
}

/* .nav-f{} */
.aaa::before {
  position: absolute;
  content: "";
  top: 1px;
  background: url(../img/wfe4.png);
  background-repeat: repeat;
  width: 52px;
  height: 52px;
  background-repeat: no-repeat;
  right: 756px;
}

.nav-f {
  list-style: none;
  margin-top: 12px !important;
  margin-right: 12px !important;
}

.aa {
  position: relative;
  margin-top: 93px;
  z-index: 22;
}

.navbar-toggler-icon {
  color: var(--light) !important;
}

.fixed {
  position: relative;
}

.fixed-inner {
  width: 40px;
  /* height: 200px; */
  background-color: transparent;
  position: fixed;
  top: 70%;
  left: 0;
  z-index: 99999;
}

/* professional_section */
body {
  background-color: #d1e3ff;
}

.professional_section {
  background-color: #d1e3ff;
}

.professional_section3 {
  background-color: #d1e3ff;
}

.professional_section2 {
  padding: 100px 0 !important;
}

.professional_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.professional_section .img-box img {
  width: 100%;
}

.professional_section .detail-box h2 {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--dark);
}

.professional_section .detail-box p {
  margin-top: 20px;
}

.professional_section .detail-box a {
  margin-top: 25px;
  display: inline-block;
  font-family: "Merriweather Sans", sans-serif;
  text-transform: uppercase;
  padding: 10px 45px;
  background-color: var(--red);
  border: 1px solid var(--red);
  border-radius: 2px;
  color: var(--light);
}

.professional_section .detail-box a:hover {
  background-color: transparent;
  color: var(--red);
}

/* product */
.portfolio-item img {
  transition: 0.5s;
  /* min-height: 350px !important; */
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
  bottom: 0;
  left: 50%;
  background: rgba(53, 53, 53, 0.7);
  transition: 0.5s;
}

.portfolio-item:hover .portfolio-overlay {
  width: 100%;
  height: 100%;
  left: 0;
}

.portfolio-item .portfolio-overlay .btn {
  opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
  opacity: 1;
}

.portfolio-item .fw-medium {
  font-size: 20px !important;
  text-transform: uppercase;
}

.portfolio-item h5 {
  font-size: 15px !important;
}

/* footer */
.pdn-top-30 {
  padding-top: 60px;
}

.footer {
  background-color: var(--dark);
  text-align: center;
  font-family: poppins;
}

.footer .headinga h3 {
  font-size: 38px;
  display: block;
  color: var(--light);
  max-width: 850px;
  padding-bottom: 1px;
  border-bottom: var(--light) solid 1px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 0px;
  margin-bottom: 30px;
}

.footer .headinga span {
  font-size: 17px;
  display: block;
  color: var(--light);
  padding-top: 10px;
  padding-bottom: 5px;
}

.footer .headinga p {
  font-size: 17px;
  display: block;
  color: var(--light);
  line-height: 30px;
}

ul.link li {
  display: inline-block;
  padding: 8px 15px;
}

ul.link li a {
  color: var(--light);
  font-size: 17px;
}

ul.link li a:hover {
  color: var(--red) !important;
}

ul.location_icon {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 5px;
}

ul.location_icon li {
  float: left;
  height: 60px;
  color: var(--light);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-right: 20px;
}

ul.location_icon li:last-child {
  padding-right: 0px;
}

ul.location_icon li a {
  color: var(--light);
  width: 40px;
  height: 40px;
  border: solid var(--light) 1px;
  float: left;
  text-align: center;
  line-height: 40px;
  border-radius: 100%;
  font-size: 18px;
}

ul.location_icon li a:hover {
  background: var(--red);
  border: solid var(--red) 1px;
  color: var(--light);
}

ul.location_icon span {
  font-size: 17px;
  font-weight: 400;
}

.copyright {
  background: var(--light);
  padding: 20px 0px 20px 0;
  margin-top: 50px;
}

.copyright p {
  color: var(--dark);
  font-size: 16px;
  text-align: center;
  text-align: center;
  margin: 0 auto;
}

.copyright a {
  color: var(--dark);
}

.copyright a:hover {
  color: var(--red);
}

.btn-primary.focus,
.btn-primary:focus {
  box-shadow: inherit;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
  color: #3CF;
}

/* html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
} */
@media (max-width: 991px) {

  html,
  body {
    overflow-x: hidden;
  }

  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }

  .mobile-bottom-fix {
    margin-bottom: 30px;
  }

  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.main-button-red a {
  font-size: 13px;
  color: #fff;
  background-color: #2F76EC;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-red a:hover {
  opacity: 0.9;
}

.main-button-red .btn {
  font-size: 13px;
  color: #fff;
  background-color: #2F76EC;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-red .btn:hover {
  opacity: 0.9;
}

.sub-header {
  background-color: #1f272b;
  position: relative;
  z-index: 1111;
}

.sub-header .left-content p {
  color: #fff;
  padding: 8px 0px;
  font-size: 13px;
}

.sub-header .right-icons {
  text-align: right;
  padding: 8px 0px;
}

.sub-header .right-icons ul li {
  display: inline-block;
  margin-left: 15px;
}

.sub-header .right-icons ul li a {
  color: #fff;
  font-size: 14px;
  transition: all .3s;
}

.sub-header .right-icons ul li a:hover {
  color: #f5a425;
}

.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

#bg-video {
  min-width: 100%;
  min-height: 90vh !important;
  max-width: 100%;
  max-height: 90vh !important;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
  /* background-color: rgba(31,39,43,0.75); */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}

.main-banner .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

/* .main-banner .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
} */
.main-banner .caption p {
  color: #fff;
  font-size: 14px;
  max-width: 570px;
}

.main-banner .caption h6 {
  color: #fff;
  font-size: 20px;
  max-width: 1000px;
  width: 100%;
}

.main-banner .caption .main-button-red {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }
}

/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/
@media (max-width: 992px) {
  .main-banner .caption {
    top: 60%;
  }

  .main-banner .caption h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 40px;
  }

  .main-banner .caption p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 10px;
  }

  .main-banner .caption .main-button-red {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .sub-header .left-content p {
    display: none;
  }

  .sub-header .right-icons {
    text-align: center;
  }

  .main-nav .nav .sub-menu {
    display: none;
  }

  .header-area .main-nav .nav li ul.sub-menu li a {
    color: #1f272b;
  }
}

/*** Facts & Quote ***/
.facts,
.quote {
  /* background: rgba(15, 66, 41, .6); */
  background:
    linear-gradient(rgba(15, 15, 15, 0.8), rgba(16, 16, 16, 0.9)),
    url(../img/index-img/bg-contact-emitter.jpeg) center center no-repeat;
  background-size: cover;
}

/*** Project Portfolio ***/
.project #portfolio-flters {
  display: inline-block;
  background: var(--light);
  padding: 10px 15px;
}

.project #portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: .5s;
  border-bottom: 2px solid transparent;
}

.project #portfolio-flters li:hover,
.project #portfolio-flters li.active {
  color: var(--dark);
  border-color: var(--dark);
}

.project .portfolio-inner {
  position: relative;
  overflow: hidden;
}

.project .portfolio-inner::before,
.project .portfolio-inner::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.683);
  transition: .5s;
}

.project .portfolio-inner::after {
  left: auto;
  right: 0;
}

.project .portfolio-inner:hover::before,
.project .portfolio-inner:hover::after {
  width: 50%;
}

.project .portfolio-inner .portfolio-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .5s;
  z-index: 3;
  opacity: 0;
}

.project .portfolio-inner:hover .portfolio-text {
  transition-delay: .3s;
  opacity: 1;
}

.project .portfolio-inner .portfolio-text .btn {
  background: var(--light);
  color: var(--primary);
}

.project .portfolio-inner .portfolio-text .btn:hover {
  background: var(--primary);
  color: var(--light);
}

.map-top .map-top-img {
  background: url(../img/index-img/img-2.jpg) center center no-repeat;
  background-size: cover;
  height: 300px;
}

.map-top img {
  width: 100%;
}

.map-top .map-top-content {
  background:
    linear-gradient(rgba(15, 15, 15, 0.8), rgba(16, 16, 16, 0.9)),
    url(../img/index-img/bg-contact-emitter.jpeg) center center no-repeat;
  background-size: cover;
  height: 300px;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.map-top-content p {
  font-size: 20px;
  color: #d1e3ff;
  padding: 0 40px;
}

/*** Top Feature ***/
@media (min-width: 991.98px) {
  .top-feature {
    position: relative;
    margin-top: -130px;
    z-index: 1;
    /* background-color: #d1e3ff7b !important; */
  }
}

/*** Service ***/
.service-item {
  position: relative;
  text-align: center;
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  transform: scale(1.2);
  transition: .3s;
  z-index: -1;
}

.service-item:hover .service-img img {
  transform: scale(1);
}

.service-item .service-text {
  background: #FFFFFF;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transition: .3s;
}

.service-item:hover .service-text {
  background: rgba(5, 5, 5, 0.696);
}

.service-item .service-text h4,
.service-item .service-text p {
  transition: .3;
}

.service-item:hover .service-text h4 {
  color: #FFFFFF;
}

.service-item:hover .service-text p {
  color: var(--light);
}

.service-item .service-text .btn-square {
  width: 100px;
  height: 100px;
  background: transparent;
  transition: .5s;
}

.service-item:hover .service-text .btn-square {
  background: var(--light);
}

.service-item .service-text .btn {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  background: var(--light);
  white-space: nowrap;
  overflow: hidden;
  transition: .3s;
}

.service-item:hover .service-text .btn {
  width: 112px;
}


/* about page  */

.about p {
  font-size: 18px;
}

.about .about-content a {
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
}

/* <style> */
/*process-box*/
.our-blog {
  background-color: gainsboro;
  position: relative;
}

.process-box {
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  position: relative;
  box-shadow: 2px 2px 7px 0 #00000057;
  /* min-height: 200px !important; */
}

.process-left:after {
  content: "";
  border-top: 15px solid #ffffff;
  border-bottom: 15px solid #ffffff;
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff;
  display: inline-grid;
  position: absolute;
  right: -15px;
  top: 42%;
  transform: rotate(45deg);
  box-shadow: 3px -2px 3px 0px #00000036;
  z-index: 1;
}

.process-right:after {
  content: "";
  border-top: 15px solid #ffffff00;
  border-bottom: 15px solid #ffffff;
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff00;
  display: inline-grid;
  position: absolute;
  left: -15px;
  top: 42%;
  transform: rotate(45deg);
  box-shadow: -1px 1px 3px 0px #0000001a;
  z-index: 1;
}

.process-step {
  background: #3076ec;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  color: #fff;
  height: 100%;
  padding-top: 8px;
  position: relative;
  top: -26px;
  border-radius: 0px 0px 10px 10px;
  box-shadow: -6px 8px 0px 0px #00000014;
}

.process-point-right {
  background: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 8px solid #3076ec;
  box-shadow: 0 0 0px 4px #5c5c5c;
  margin: auto 0;
  position: relative;
  bottom: -60px;
  left: -110px;
}

.process-point-right:before {
  content: "";
  height: 125px;
  width: 11px;
  background: #5c5c5c;
  display: inline-grid;
  transform: rotate(36deg);
  position: relative;
  left: -49px;
  top: -0px;
}

.process-point-left {
  background: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 8px solid #3076ec;
  box-shadow: 0 0 0px 4px #5c5c5c;
  margin: auto 0;
  position: relative;
  bottom: -62px;
  right: -580px;
}

.process-point-left:before {
  content: "";
  height: 125px;
  width: 11px;
  background: #5c5c5c;
  display: inline-grid;
  transform: rotate(-38deg);
  position: relative;
  left: 40px;
  top: 0px;

}

@media screen and (max-width:1100px) {

  .process-point-left,
  .process-point-right {
    display: none;
  }

  .process-box {
    margin-top: 30px;
  }
}

.process-last:before {
  display: none;
}

.process-box p {
  z-index: 9;
}

.process-step p {
  font-size: 20px;
}

.process-step h2 {
  font-size: 39px;
}

.process-step:after {
  content: "";
  border-top: 8px solid #3076ec00;
  border-bottom: 8px solid #5184dc;
  border-left: 8px solid #3076ec00;
  border-right: 8px solid #5184dc;
  display: inline-grid;
  position: absolute;
  left: -16px;
  top: 0;
}

.process-step:before {
  content: "";
  border-top: 8px solid #ff000000;
  border-bottom: 8px solid #5184dc;
  border-left: 8px solid #5184dc;
  border-right: 8px solid #ff000000;
  display: inline-grid;
  position: absolute;
  right: -16px;
  top: 0;
}

.process-line-l {
  background: white;
  height: 4px;
  position: absolute;
  width: 136px;
  right: -153px;
  top: 64px;
  z-index: 9;
}

.process-line-r {
  background: white;
  height: 4px;
  position: absolute;
  width: 136px;
  left: -153px;
  top: 63px;
  z-index: 9;
}

/* </style> */

.enq-heading {
  font-size: 28px;
}

.service-section-page {
  padding: 20px 0 40px;
}

.service-section-page h3 {
  color: var(--red);
  font-weight: bold;
}

.service-section-page i {
  font-size: 16px;
  font-weight: bold;
}

.service-section-page p {
  color: #000;
  margin-bottom: 10px;
  font-size: 20px;
}


/* inq-start */

.inq-sec-start .product-title{
  border-bottom: solid 5px var(--red);
}
.inq-sec-start .product-sub-title span h3{
  border-bottom: solid 3px var(--red);
}
.inq-sec-start .product-content{
  padding: 10px 0; 
  text-align: justify;
  font-size: 18px;
}
.inq-sec-start .product-sub-box .sub-product-img{
overflow: hidden;
text-align: justify;
}
.inq-sec-start .product-sub-box .sub-product-contetn ul li{
  display: block; 

}
.inq-sec-start .product-sub-box .sub-product-contetn {
margin-bottom: 10px;
padding-top: 10px;

}
.inq-sec-start .product-sub-box{
overflow: hidden;
text-align: justify;
}
.inq-sec-start .product-sub-box:hover img{
transform: scale(1.1) !important;
/* transform: rotate(2deg) !important; */
transition: 0.5s all ease-in-out;


}
/* inq-end */