/* Poppins fonts */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 250;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-Thin.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 275;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-Light.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-Regular.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-Medium.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-Bold.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-Black.woff") format("woff");
}
/* shadow variable */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #fafafa;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

h1, h2, h3, h4, h5, h6, p, a, li, label, span {
  font-family: "Poppins", sans-serif;
  color: #0E1839;
  font-weight: 300;
}

p, li {
  font-size: 18px;
}

a {
  transition: all 0.5s;
}

section {
  padding: 60px 0px;
}

.sub-title {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  display: inline-flex;
}
.sub-title img {
  margin-right: 7px;
  max-width: 33px;
}

.sec-title {
  color: #0E1839;
  font-size: 30px;
  font-weight: 600;
  margin: 10px 0px 25px 0px;
}
.sec-title span {
  color: #f68712;
  font-weight: 600 !important;
}

.moving-line {
  position: relative;
  display: inline-block;
}
.moving-line::before, .moving-line::after {
  content: "";
  position: absolute;
}
.moving-line::before {
  left: 0;
  bottom: -10px;
  width: 61px;
  height: 3px;
  background-color: #f68712;
}
.moving-line::after {
  width: 16px;
  border-left: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  height: 3px;
  background: transparent;
  bottom: -10px;
  left: 40px;
  -webkit-animation: footerLine 7s linear infinite;
  animation: movingLines 7s linear infinite;
}

.scrollup {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 100px;
  right: 16px;
  display: none;
  border-radius: 12px;
  text-align: center;
  background-color: #0E1839;
  transition: all 0.6s;
  z-index: 999999;
}

.scrollup img {
  position: relative;
  top: 5px;
  transform: rotate(270deg);
  max-width: 20px;
}

.scrollup:hover {
  background-color: #f68712;
}

.swiper-pagination-bullet {
  background: #FFFFFF;
  border-radius: 10.938px;
  opacity: 0.8;
  width: 18.75px;
  height: 9.75px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #f68712;
  width: 35px;
}

.bullet-points li {
  background-color: #f68712;
  position: relative;
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 10px;
  border-radius: 20px;
  padding: 5px 20px 5px 40px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.bullet-points li:before {
  content: "";
  background-image: url("../images/icon/tick-white.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  height: 26px;
  width: 26px;
}
.bullet-points li:last-child {
  margin-bottom: 0px;
}

/* ====== nav-list-rounded componants start ====== */
.nav-list-rounded {
  background: #FFFFFF;
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  margin-bottom: 21px;
  padding: 17px 24px 24px 24px;
}
.nav-list-rounded h4 {
  color: #979797;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  padding: 10px 0px 15px 0px;
  margin-bottom: 0px;
  border-bottom: 1px solid #E0E0E0;
}
.nav-list-rounded .navbar-nav li a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 15px 0px;
  display: flex;
  align-items: center;
}
.nav-list-rounded .navbar-nav li a:hover {
  color: #f68712;
}
.nav-list-rounded .main-services, .nav-list-rounded .sub-link {
  padding-left: 30px;
}

/* ==================================================
===== Medium devices (tablets, less than 992px) =====
===================================================== */
@media (max-width: 991.98px) {
  section {
    padding: 40px 16px;
  }
}
/* ==========================================================
===== Small devices (landscape phones, less than 768px) =====
============================================================= */
@media (max-width: 767.98px) {
  p, a, li, label {
    font-size: 16px;
  }
  .sec-title {
    font-size: 24px;
    margin: 10px 0px 20px 0px;
    line-height: 1.3em;
  }
  .bullet-points li {
    text-align: left;
  }
}
.form-floating {
  margin-bottom: 20px;
}

.form-control {
  color: #0E1839;
  border-color: #59606C;
}
.form-control:focus {
  box-shadow: none;
  border-color: #f68712;
}

.ui-btn {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 0px;
  position: relative;
}
.ui-btn:hover {
  border-radius: 20px 10px;
  color: #FFFFFF !important;
}
.ui-btn img {
  margin-left: 5px;
  max-width: 20px;
}

.primary {
  background-color: #274082;
}
.primary:hover {
  background-color: #f68712 !important;
  color: #FFFFFF !important;
}

.secondary {
  background-color: #f68712;
}
.secondary:hover {
  background-color: #274082 !important;
  color: #FFFFFF !important;
}

.outline {
  border-color: #274082;
  color: #274082;
}
.outline:hover {
  border-color: #f68712 !important;
  color: #f68712 !important;
}

/* ==================================================
===== Medium devices (tablets, less than 992px) =====
===================================================== */
/* ==========================================================
===== Small devices (landscape phones, less than 768px) =====
============================================================= */
.trin-trin {
  animation-name: trin;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes trin {
  from {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
/* ===== end trin ===== */
/* ===== ripple ===== */
@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}
/* ===== end ripple ===== */
/* ===== movingLines ===== */
@-webkit-keyframes movingLines {
  0% {
    left: 40px;
  }
  50% {
    left: 0;
  }
  100% {
    left: 40px;
  }
}
@keyframes movingLines {
  0% {
    left: 40px;
  }
  50% {
    left: 0;
  }
  100% {
    left: 40px;
  }
}
/* ===== end movingLines ===== */
.top-strip {
  background-color: #0E1839;
  padding: 4px;
}
.top-strip .company-info {
  list-style: none;
  padding: 0px;
  margin: 0px;
  text-align: right;
}
.top-strip .company-info li {
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  font-size: 16px;
}
.top-strip .company-info li:last-child {
  margin-right: 0px;
}
.top-strip .company-info li span {
  color: #FFFFFF;
  font-weight: 600;
  margin-right: 4px;
}
.top-strip .company-info li a {
  font-size: 16px;
  padding: 7px 18px;
  border-radius: 20px 10px;
}

.navbar-wrapper {
  background-color: #FFFFFF;
}
.navbar-wrapper .navbar-brand {
  max-width: 280px;
}
.navbar-wrapper .navbar-brand img {
  width: 90%;
}
.navbar-wrapper .navbar-expand-lg {
  background-color: #FFFFFF;
  box-shadow: 0px 3.261px 10.87px 2.174px rgba(0, 0, 0, 0.08);
  padding: 0px;
}
.navbar-wrapper .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-wrapper .dropdown:hover .dropdown-menu {
  display: block;
}
.navbar-wrapper .navbar-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.navbar-wrapper .navbar-nav li {
  margin-left: 25px;
}
.navbar-wrapper .navbar-nav li.quote-page.active a {
  background-color: #f68712;
  border-radius: 20px 10px;
}
.navbar-wrapper .navbar-nav li a {
  font-family: "Poppins", sans-serif;
  color: #0E1839;
  font-size: 16px;
  font-weight: 400;
  padding: 20px 0px;
  position: relative;
  transition: all 300ms ease-in-out;
}
.navbar-wrapper .navbar-nav li a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0.5rem;
  right: 0.5rem;
  height: 3px;
  background-color: transparent;
}
.navbar-wrapper .navbar-nav li a:hover {
  color: #f68712;
}
.navbar-wrapper .navbar-nav li a.dropdown-toggle:after {
  display: none;
}
.navbar-wrapper .navbar-nav li.active a {
  color: #f68712;
}
.navbar-wrapper .navbar-nav li.active a:after {
  background-image: linear-gradient(184.78deg, #f68712 7.64%, #274082 120.07%);
}
.navbar-wrapper .navbar-nav li .dropdown-menu {
  margin-top: 0px;
}
.navbar-wrapper .navbar-nav li .dropdown-menu li {
  margin-left: 0px;
}
.navbar-wrapper .navbar-nav li .dropdown-menu li a {
  padding: 10px 12px;
}
.navbar-wrapper .navbar-nav li .dropdown:hover > .dropdown-menu,
.navbar-wrapper .navbar-nav li .dropend:hover > .dropdown-menu {
  display: block;
}
.navbar-wrapper .navbar-nav li .dropend:hover > .dropdown-menu {
  position: absolute;
  top: -0.5rem;
  left: 100%;
  margin-left: 0;
}
.navbar-wrapper .navbar-nav.nav-right .call-me img {
  max-width: 25px;
  transition: all 300ms ease-in-out;
}
.navbar-wrapper .navbar-nav.nav-right .call-me:hover img {
  filter: invert(54%) sepia(54%) saturate(1543%) hue-rotate(355deg) brightness(100%) contrast(93%);
}
.navbar-wrapper .navbar-nav.nav-right .nav-link-btn {
  background-color: #274082;
  color: #FFFFFF;
  padding: 10px 18px;
  line-height: 30px;
  white-space: nowrap;
}
.navbar-wrapper .navbar-nav.nav-right .nav-link-btn:hover {
  background-color: #f68712;
  border-radius: 20px 10px;
}
.navbar-wrapper .navbar-nav.nav-right .nav-link-btn:after {
  display: none;
}
.navbar-wrapper .navbar-nav.nav-right .nav-link-btn img {
  margin-left: 5px;
  max-width: 20px;
}
.navbar-wrapper .navbar-nav.navbar-bottom {
  background-color: #FFFFFF;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  padding: 0px 30px;
  width: 100%;
  box-shadow: 0px -3.261px 10.87px 0px rgba(0, 0, 0, 0.08);
  z-index: 99999;
}
.navbar-wrapper .navbar-nav.navbar-bottom li {
  margin-left: 0px;
}
.navbar-wrapper .navbar-nav.navbar-bottom li a {
  text-align: center;
  font-weight: 400;
  text-decoration: none;
  padding: 24px 0px;
}
.navbar-wrapper .navbar-nav.navbar-bottom li a img {
  max-width: 19px;
}
.navbar-wrapper .navbar-nav.navbar-bottom li.home a:after {
  left: -3px;
  width: 25px;
}
.navbar-wrapper .navbar-nav.navbar-bottom li.home.active img {
  filter: invert(59%) sepia(29%) saturate(3706%) hue-rotate(355deg) brightness(101%) contrast(93%);
}

@media screen and (min-width: 992px) {
  .navbar {
    padding: 0;
    line-height: 3rem;
  }
  .navbar .dropdown-menu {
    line-height: initial;
  }
  .dropdown .dropdown-menu {
    display: none;
  }
  .dropdown:hover > .dropdown-menu,
  .dropend:hover > .dropdown-menu {
    display: block;
  }
  .dropdown:hover > .dropdown-menu {
    margin-top: -0.5rem;
  }
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: -0.5rem;
    left: 100%;
    margin-left: 0;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 991.98px) {
  .navbar-wrapper .navbar-nav.navbar-bottom {
    display: none;
  }
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .navbar-wrapper .navbar-expand-lg {
    padding: 7px 4px;
  }
  .navbar-wrapper .navbar-nav.nav-left {
    display: none;
  }
  .navbar-wrapper .navbar-nav.navbar-bottom {
    padding: 0px 20px;
  }
  .navbar-wrapper .navbar-nav.navbar-bottom li a {
    font-weight: 500;
  }
  .navbar-wrapper .navbar-nav.navbar-bottom li a:after {
    top: 0px;
  }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .top-strip .company-info {
    padding: 10px 0px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-wrapper .container {
    flex-wrap: nowrap;
  }
  .navbar-wrapper .navbar-brand img {
    width: 100%;
  }
  .navbar-wrapper .navbar-nav.nav-right .nav-link-btn {
    padding: 8px 16px;
  }
}
@media (max-width: 575.98px) {
  .navbar-wrapper .navbar-nav.navbar-bottom li a {
    font-size: 14px;
  }
}
footer {
  background-color: #0E1839;
  padding-top: 50px;
}
footer .foot-info-col {
  padding-right: 20px;
}
footer .foot-info-col h4 {
  font-size: 16px;
  line-height: 1.4em;
}
footer .foot-info-col span {
  color: #FFFFFF;
  font-weight: 600;
}
footer .brand {
  background-color: #FFFFFF;
  padding: 6px;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 20px;
  width: 210px;
}
footer p, footer a {
  font-size: 16px;
}
footer h4, footer p, footer a, footer i, footer svg {
  color: #FFFFFF;
}
footer h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 22px;
  position: relative;
}
footer h4 .moving-line {
  position: absolute;
  left: 0;
  bottom: 0px;
}
footer h4 .moving-line::before {
  background-color: #f68712;
}
footer .navbar-nav li {
  position: relative;
}
footer .navbar-nav li a {
  text-decoration: none;
  padding: 5px 0px 5px 20px;
  display: flex;
  align-items: center;
  position: relative;
}
footer .navbar-nav li a:before {
  content: "";
  background-image: url("../images/icon/solid/angle-right.svg");
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(68deg) brightness(106%) contrast(102%);
  background-repeat: no-repeat;
  background-size: 11px;
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
}
footer .navbar-nav li a i, footer .navbar-nav li a svg {
  margin-right: 16px;
}
footer .navbar-nav li a:hover, footer .navbar-nav li a:hover svg {
  color: #f68712;
}
footer .foot-addr {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 30px auto;
}
footer .foot-addr a {
  text-decoration: none;
}
footer .foot-addr a:hover {
  color: #f68712;
}
footer .foot-addr a:hover img {
  filter: invert(75%) sepia(39%) saturate(7500%) hue-rotate(390deg) brightness(102%) contrast(93%);
}
footer .foot-addr a img, footer .foot-addr span img {
  margin-right: 5px;
  width: 16px;
}
footer .foot-addr .d-flex p:first-child {
  margin-right: 20px;
}
footer .social {
  flex-direction: row;
  align-items: center;
}
footer .social li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
footer .social li a {
  padding: 5px 0px 5px 0px;
}
footer .social li a:before {
  display: none;
}
footer .social li a img {
  width: 20px;
  margin-right: 25px !important;
}
footer .social li a:hover img {
  filter: invert(75%) sepia(39%) saturate(7500%) hue-rotate(390deg) brightness(102%) contrast(93%);
}
footer .social li:last-child svg {
  margin-right: 0px !important;
}
footer .foot-copyright {
  background-color: #f68712;
  padding: 11px 16px;
  text-align: center;
}
footer .foot-copyright a {
  text-decoration: none;
  font-weight: 600;
}
footer .foot-copyright a:hover {
  color: #0E1839;
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  footer {
    padding: 50px 16px 100px 16px;
  }
  footer .brand {
    margin-bottom: 0px;
  }
  footer h4 {
    margin: 22px 0px;
  }
  footer .foot-addr .d-flex {
    flex-wrap: wrap;
  }
  footer .foot-addr .d-flex p a {
    display: inline-block;
  }
}
/* Small devices (landscape phones, less than 768px) */
.hero-section {
  padding: 0px;
}
.hero-section .hp-hero-slider .container {
  position: relative;
}
.hero-section .hp-hero-slider .swiper-wrapper {
  position: relative;
}
.hero-section .hp-hero-slider .swiper-wrapper .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  width: 100%;
  height: 100vh;
}
.hero-section .hp-hero-slider .swiper-wrapper .swiper-slide.slide-1 {
  background-image: url("../images/slider/security-and-safety-system.jpg");
}
.hero-section .hp-hero-slider .swiper-wrapper .swiper-slide.slide-2 {
  background-image: url("../images/slider/access-control-system.jpg");
}
.hero-section .hp-hero-slider .swiper-wrapper .swiper-slide.slide-3 {
  background-image: url("../images/slider/fire-alarm-system.jpg");
}
.hero-section .hp-hero-slider .swiper-wrapper .swiper-slide .inner-container {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
}
.hero-section .hp-hero-slider .swiper-wrapper .swiper-slide .content {
  max-width: 730px;
  width: 100%;
}
.hero-section .hp-hero-slider .swiper-wrapper .swiper-slide .content h2, .hero-section .hp-hero-slider .swiper-wrapper .swiper-slide .content p {
  color: #FFFFFF;
  margin-bottom: 25px;
}
.hero-section .hp-hero-slider .swiper-wrapper .swiper-slide .content h2 {
  font-size: 75px;
  font-weight: 700;
  line-height: 1.1;
}
.hero-section .hp-hero-slider .swiper-wrapper .swiper-slide .content p {
  font-size: 20px;
  font-weight: 400;
}
.hero-section .hp-hero-slider .swiper-wrapper .swiper-slide .content a {
  font-weight: 600;
}
.hero-section .hp-hero-slider .swiper-wrapper .swiper-slide .content a img {
  margin-left: 5px;
  max-width: 20px;
  height: auto;
}
.hero-section .hp-hero-slider .swiper-pagination {
  padding-right: 80px;
  bottom: 160px !important;
  width: 250px;
  right: 0;
  left: auto;
}

.our-cust-home {
  margin-top: -100px;
}
.our-cust-home .our-customers {
  padding-bottom: 40px;
}

.our-customers .container {
  background-color: #FFFFFF;
  padding: 16px 26px 26px 26px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  box-shadow: 0px 15px 34px rgba(0, 0, 0, 0.1);
}
.our-customers .client-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-customers .client-logo-wrap .swiper-wrapper {
  position: relative;
}
.our-customers .client-logo-wrap .swiper-wrapper .swiper-slide {
  display: flex;
  height: 120px;
}
.our-customers .client-logo-wrap .swiper-wrapper .swiper-slide .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 120px;
  margin-right: 20px;
}

.we-did {
  background: #0E1839 url("../images/bg-pattern.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.we-did .circle-shapes-outer .circle-shapes p {
  color: #FFFFFF;
}

.meet-team {
  background-color: #FFFFFF;
}
.meet-team .team-member {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  -webkit-box-shadow: 0px 15px 34px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 15px 34px rgba(0, 0, 0, 0.1);
}
.meet-team .team-member .avtar img {
  margin-bottom: 20px;
  max-width: 220px;
}
.meet-team .team-member .info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.meet-team .team-member .info p {
  color: #0E1839;
  opacity: 0.6;
  margin-bottom: 0px;
}

.why-choose-us .sec-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
}
.why-choose-us .text-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
}
.why-choose-us .bullet-points {
  margin-top: 26px;
}

.circle-shapes-outer {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
}

.circle-shapes {
  margin-bottom: 20px;
  max-width: 208px;
  text-align: center;
}
.circle-shapes p {
  font-size: 20px;
  font-weight: 600;
  margin: 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.circle-shapes p span {
  width: 150px;
  height: 150px;
  display: inline-flex;
  background-color: #f68712;
  color: #FFFFFF;
  font-size: 24px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  margin-bottom: 20px;
  transition: all 0.5s;
}
.circle-shapes p span:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 6px;
  width: 150px;
  height: 150px;
  display: inline-flex;
  background-color: #0E1839;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s;
}
.circle-shapes p span:hover:after {
  bottom: 0px;
  left: 0px;
}

.encrypted-network {
  background-image: url("../images/Encrypted-Network.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.encrypted-network .sub-title, .encrypted-network .sec-title, .encrypted-network p {
  color: #FFFFFF;
}
.encrypted-network .key-value ul {
  display: flex;
}
.encrypted-network .key-value ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 200px;
}
.encrypted-network .key-value ul li .bg-shape {
  background-image: url("../images/icon/bg-white-icon-shape.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}
.encrypted-network .key-value ul li .bg-shape img {
  object-fit: contain;
}
.encrypted-network .key-value ul li p {
  font-size: 20px;
  font-weight: 500;
}
.encrypted-network .key-value ul li:nth-child(1) .bg-shape img {
  width: 63px;
}
.encrypted-network .key-value ul li:nth-child(2) .bg-shape img {
  width: 33px;
}
.encrypted-network .key-value ul li:nth-child(3) .bg-shape img {
  width: 51px;
}

.easy-steps .row:nth-child(2) {
  justify-content: space-evenly;
}
.easy-steps .ui-card {
  margin-top: 60px;
}
.easy-steps .ui-card .card-body h4 {
  font-size: 20px;
  font-weight: 600;
}
.easy-steps .ui-card .card-body .icon {
  background-color: transparent;
}
.easy-steps .ui-card .card-body:hover .icon img {
  filter: none;
}

.process_number {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #0E1839;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: 2;
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
}
.process_number:before, .process_number:after {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
  animation-name: ripple;
}
.process_number:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0E1839;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.process_number:after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.testimonials {
  background-image: url("../images/bg-pattern1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.testimonials .sub-title, .testimonials .sec-title {
  color: #FFFFFF;
}
.testimonials .testimonials-slider {
  background-color: #FFFFFF;
  padding: 26px 36px;
  margin-left: auto;
  margin-right: 0;
  border-radius: 6px;
  max-width: 660px;
}
.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .swiper-slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .swiper-slide-inner .content {
  padding-right: 20px;
}
.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .swiper-slide-inner .content p {
  font-weight: 400;
}
.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .swiper-slide-inner .avtar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .swiper-slide-inner .avtar img {
  background-image: url("../images/icon/bg-icon-shape.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 6px;
  border-radius: 60px;
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.testimonials .testimonials-slider .swiper-wrapper .swiper-slide .swiper-slide-inner .avtar h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0px 16px 0px;
  white-space: nowrap;
}
.testimonials .testimonials-slider .swiper-pagination {
  padding: 20px 20px 5px 0px;
}
.testimonials .testimonials-slider .swiper-pagination .swiper-pagination-bullet {
  background: #0E1839;
}
.testimonials .testimonials-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #f68712;
}

.request-quote .container {
  position: relative;
}
.request-quote .container .btn {
  position: absolute;
  top: 50%;
  right: 0;
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .hero-section .hp-hero-slider .swiper-wrapper .swiper-slide {
    padding: 40px 16px 100px 16px;
    height: 100%;
  }
  .hero-section .hp-hero-slider .swiper-wrapper .swiper-slide .inner-container {
    height: 100%;
  }
  .hero-section .hp-hero-slider .swiper-wrapper .swiper-slide .content h2 {
    font-size: 35px;
    margin-bottom: 16px;
  }
  .hero-section .hp-hero-slider .swiper-pagination {
    padding-right: 20px;
    text-align: right;
    bottom: 84px !important;
  }
  .our-cust-home .our-customers {
    padding-bottom: 0px;
  }
  .our-customers .client-logo-wrap .swiper-wrapper .swiper-slide {
    height: 100px;
    width: 170px !important;
  }
  .our-customers .client-logo-wrap .swiper-wrapper .swiper-slide .client-logo {
    width: 100%;
  }
  .request-quote .container .btn {
    position: relative;
    top: 0;
  }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .circle-shapes-outer .circle-shapes p {
    font-size: 18px;
    margin: 10px;
  }
  .meet-team .team-member {
    margin-bottom: 30px;
  }
  .meet-team .team-member .info h3 {
    font-size: 20px;
  }
  .meet-team .col-sm-12:last-child .team-member {
    margin-bottom: 0px;
  }
  .process_number {
    left: 0;
  }
  .easy-steps .ui-card {
    margin-top: 50px;
  }
  .easy-steps .ui-card .card-body h4 {
    font-size: 18px;
    margin: 20px 0px;
  }
}
@media (max-width: 575.98px) {
  .encrypted-network .key-value ul li:nth-child(1) .bg-shape img {
    width: 50px;
  }
  .encrypted-network .key-value ul li:nth-child(2) .bg-shape img {
    width: 26px;
  }
  .encrypted-network .key-value ul li:nth-child(3) .bg-shape img {
    width: 42px;
  }
  .encrypted-network .key-value ul li p {
    font-size: 18px;
    text-align: center;
  }
}
.top-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url(../images/bg-pattern.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 250px;
}
.top-header h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: 0.547px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}
.top-header h1:before, .top-header h1:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin: auto;
}
.top-header h1:before {
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #0E1839, transparent 60%);
  bottom: 1px;
}
.top-header h1:after {
  width: 60px;
  height: 3px;
  background: #f68712;
  bottom: 0;
}

.ui-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
}
.ui-breadcrumb .breadcrumb-item {
  color: #f68712;
}
.ui-breadcrumb .breadcrumb-item a {
  color: #0E1839;
  text-decoration: none;
  font-weight: 500;
}
.ui-breadcrumb .breadcrumb-item.breadcrumb-item::before {
  color: #0E1839;
}

.our-services {
  background: #0E1839 url("../images/bg-pattern.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.our-services .sub-title, .our-services .sec-title {
  color: #FFFFFF;
  position: relative;
}
.our-services .sec-title .btn {
  position: absolute;
  top: 0;
  right: 0;
}

.service-page .sec-title .btn {
  display: none;
}

.internal-services .card {
  position: relative;
}
.internal-services .card .img-top {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 175px;
}
.internal-services .card .img-top img {
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.internal-services .card .card-body {
  text-align: left;
  align-items: start;
}
.internal-services .card .card-body h4 {
  margin: 0px 0px 10px 0px;
  min-height: 44px;
}
.internal-services .card .card-body p {
  font-size: 16px;
  margin-bottom: 0px;
  padding-right: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.internal-services .card .card-body .btn {
  border-radius: 20px 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 45px;
  width: 45px;
  transition: all 1s;
}
.internal-services .card .card-body .btn img {
  margin-left: 0px;
  transform: rotate(-32deg);
  position: relative;
  /*transform: scale(0.26) translate(-58px, 50px);*/
  transform: scale(1) translate(-5px, 0px);
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.internal-services .card .card-body .btn:hover img {
  transform: scale(1.2) translate(-2px, 0px);
}

.services-content a {
  font-weight: 500;
}
.services-content a:hover {
  color: #f68712;
}

.card-outer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 20px;
}
.card-outer-container .ui-card {
  width: 210px;
  min-height: 280px;
}

.ui-card {
  border-top-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 20px;
  border: none;
  text-align: center;
  margin-bottom: 26px;
  background-color: #FFFFFF;
  box-shadow: 0px 15px 34px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
.ui-card .card-body {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 20px 16px;
}
.ui-card .card-body .icon {
  background-color: #0E1839;
  border: 1px solid #0E1839;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  transition: all 0.5s;
}
.ui-card .card-body .icon img {
  object-fit: contain;
  height: 40px;
}
.ui-card .card-body h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 30px 0px;
}
.ui-card .card-body .ui-btn {
  font-size: 16px;
  padding: 8px 16px;
}
.ui-card .card-body:hover .icon {
  background-color: transparent;
  border: 1px solid #0E1839;
}
.ui-card .card-body:hover .icon img {
  filter: invert(72%) sepia(52%) saturate(5077%) hue-rotate(380deg) brightness(170%) contrast(100%);
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .our-services {
    background-attachment: local;
  }
  .our-services .sec-title .btn {
    top: -60px;
  }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .card-outer-container {
    flex-wrap: wrap;
  }
  .card-outer-container .ui-card {
    width: 49%;
  }
  .card-outer-container .ui-card:last-child {
    margin-bottom: 0px;
  }
}
@media (max-width: 413.98px) {
  .our-services .sec-title .btn {
    top: -101px;
  }
  .card-outer-container .ui-card {
    width: 100%;
  }
  .circle-shapes-outer {
    flex-wrap: wrap;
  }
}
.gallery-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery-grid .card {
  border: none;
  object-fit: contain;
  width: 260px;
}

.contact-info {
  margin-top: 40px;
}
.contact-info li {
  display: flex;
  margin-bottom: 30px;
}
.contact-info li .icon {
  margin-right: 20px;
}
.contact-info li .icon img {
  object-fit: contain;
  width: 30px;
  max-width: 30px;
}
.contact-info li .content span {
  color: #59606C;
}
.contact-info li .content a {
  text-decoration: none;
  font-weight: 500;
  display: block;
}
.contact-info li .content a:hover {
  color: #f68712;
}

.contact-from {
  background-color: #FFFFFF;
  padding: 20px;
}
.contact-from textarea {
  min-height: 180px;
}

/*# sourceMappingURL=app.css.map */
