body {
  font-family: 'proxima_novaregular';
  color: #606060;
}

a {
  color: #0c1465;
  text-decoration: none;
}

a:hover {
  color: #F9B233;
  text-decoration: none;
}

h1,
h2,
h3,
h4,p
h5,
h6 {
  font-family: 'proxima_novabold';
  color: #0c1465;
}

p {
  color: #606060;
}


/* Custom scrollbar for WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #0c1465;
}

::-webkit-scrollbar-thumb {
  background: #0c1465;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0c1465;
}

/* Custom scrollbar for Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #0c1465;
}

html::-webkit-scrollbar {
  width: 5px;
}

html::-webkit-scrollbar-track {
  background: #0c1465;
}

html::-webkit-scrollbar-thumb {
  background-color: #0c1465;
  border-radius: 5px;
  border: 5px solid #0c1465;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #0c1465;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0c1465;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
} */

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c1465; /* Blue background color for preloader */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1; /* Ensure preloader starts fully visible */
  transition: opacity 0.5s ease-in-out; /* Smooth fade-out */
}

/* Preloader content styles */
#preloader-content {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  text-align: center; /* Center text */
  max-width: 80%; /* Adjust as needed */
  max-height: 80%; /* Adjust as needed */
}

/* Logo styles */
#logo {
  margin-bottom: 5px; /* Spacing between logo and product names */
}

#logo img {
  height: 45px; /* Adjust size of the logo */
  display: block;
}

/* Product names styles */
#product-names {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center product names */
}

.product-name {
  position: fixed;
  font-size: 27px;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  margin: 5px 0; /* Space between product names */
}

/* Main content styles */
#content {
  /* background-color: #ffffff;  */
  display: none; /* Initially hide content */
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0c1465;
  width: 40px;
  height: 40px;
  border-radius: 0px 10px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #F9B233;
  color: #0c1465;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  height: 110px;
  /* background: rgba(255, 255, 255, 0.9); */
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 7%, rgba(0, 0, 0, 0) 100%); */
  /* background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(70, 70, 70, 1) 100%); */
  /* background:  linear-gradient(90deg, rgba(255, 255, 255, 0) 3%, rgba(70, 70, 70, 1) 100%) */
}

@media (max-width: 768px) {
  #header {
    height: auto !important;
  }
}

#header .navbar .getstarted,
#header .navbar .getstarted:focus {
  color: #FFFFFF;
  background-color: #0c1465;
}

/* #header ul li a {
  color: #fff;
} */

#header.header-scrolled {
  height: 75px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #ffffff;
  box-shadow: 0 0.5rem 4rem rgba(0, 0, 0, 0.15);
  /* border-bottom: 2px solid #F9B233; */
}

#header.header-scrolled ul li a {
  color: #0c1465;
}

/* #header.header-scrolled ul li ul li a{
  color: #0c1465 !important
} */
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 45px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  font-family: 'proxima_novabold';
  /* font-family: 'proxima_novaregular'; */
  /* font-family: 'proxima_novathin'; */
  letter-spacing: 0.5px;
  /* text-shadow: 1px 1px 2px #0c1465; */
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin: 0 5px;
  font-size: 16px;
  font-weight: 500;
  color: #0c1465;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 0px 0px 0px 0px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #FFFFFF !important;
  background: #0c1465;
  /* border-bottom: 3px solid #0c1465; */
}

/* .navbar ul li ul li a:hover{
  background-color: #F9B233;
  color: #0c1465 !important;
} */
.navbar a:hover,
.navbar .active:focus,
.navbar li:hover>a {
  color: #F9B233;
  background: rgba(40, 56, 124, 0.5);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 0px;
  color: #ffffff;
  font-size: 14px;
  /* border: 1px solid #F9B233; */
  font-weight: 600;
}

#header .navbar .getstarted,
#header .navbar .getstarted:focus {
  padding: 10px 20px;
  margin-left: 30px;
  border-radius: 0px;
  border-radius: 0px 15px 0px 15px;
  color: #FFFFFF;
  font-size: 16px;
  /* border: 1px solid #F9B233; */
  font-weight: 600;
  /* background: none !important; */
}

#header.header-scrolled .navbar .getstarted,
#header.header-scrolled .navbar .getstarted:focus {
  padding: 10px 20px;
  margin-left: 30px;
  border-radius: 0px 15px 0px 15px;
  color: #FFFFFF;
  font-size: 16px;
  /* border: 1px solid #F9B233; */
  font-weight: 600;
  /* background: #0c1465; */
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #F9B233 !important;
  background: #0c1465;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 5px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c1465 !important;
  text-transform: uppercase !important;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #0c1465 !important;
  color: #ffffff !important;
}

.navbar .dropdown ul li .active {
  background-color: #F9B233 !important;
  color: #0c1465 !important;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  margin-right: -5px;
}

.mobile-nav-toggle.bi-x {
  color: #0c1465;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    color: #0c1465;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0c1465;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #0c1465;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #0c1465;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #0c1465;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  padding-bottom: 60px;
  /* background: #FFFFFF; */
}

@media (max-width: 768px) {
  #hero {
    width: 100%;
    /* height: 100vh; */
    /* background: #FFFFFF; */
  }
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 42px;
  color: #fff;
  font-family: 'proxima_novaregular';
}

#hero h2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 20px;
  font-family: 'proxima_novaregular';
}

#hero .btn-get-started {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 0px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: none;
  font-family: 'proxima_novabold';
  border: 1px solid #F9B233;
  border-radius: 0px 20px 0px 20px;
}

#hero .btn-get-started:hover {
  background: #0c1465;
  color: #fff;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #0c1465;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


#hero {
  /* position: relative; */
}

.down-arrow {
  position: absolute;
  bottom: 20px;
  left: 46.5%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 19px;
    line-height: 23px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0 0px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: left;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #0c1465;
  font-family: 'proxima_novaregular';
  width: 70%;
}

/* .section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
} */

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 53px;
  height: 5px;
  background: #F9B233;
  bottom: 6px;
  /* left: calc(50% - 20px); */
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
}

.clients .swiper-slide {
  border: none !important;
  box-shadow: none !important;
}

.clients img {
  max-width: 40%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(1);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

.clients-slider h2 {
  font-size: 16px !important;
  text-align: center !important;
  color: #0c1465 !important;
  min-height: 45px !important;
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: #0c1465;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: 'proxima_novabold';
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #0c1465;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #0c1465;
}

.about .content .btn-learn-more:hover {
  background: #0c1465;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #0c1465;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: 'proxima_novabold';
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #0c1465;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #0c1465;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #0c1465;
  font-family: 'proxima_novabold'
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 16px;
  padding-right: 4px;
  color: #0c1465;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: 'proxima_novabold';
  color: #0c1465;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #0c1465;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #0c1465;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #0c1465;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #0c1465;
  border: 2px solid #0c1465;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 16px;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'proxima_novaregular';
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  /* background: #0c1465; */
  color: #F9B233;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #0c1465;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.swiper-pagination {
  display: none !important;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0c1465;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0c1465;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #0c1465;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #0c1465;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #0c1465;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #0c1465;
}

.pricing h4 {
  font-size: 48px;
  color: #0c1465;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #0c1465;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #0c1465;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #0c1465;
}

.pricing .buy-btn:hover {
  background: #0c1465;
  color: #fff;
}

.pricing .featured {
  border-top-color: #0c1465;
}

.pricing .featured .buy-btn {
  background: #0c1465;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
  min-height: 135px;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #ffc451;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 0px !important;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: 'proxima_novabold';
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #0c1465;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #0c1465;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #0c1465;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-top: 0px !important;
}

.contact .info {
  border-top: 3px solid #0c1465;
  border-bottom: 3px solid #0c1465;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 16px;
  color: #0c1465;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0c1465;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #0c1465;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #0c1465;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #0c1465;
  /* border-bottom: 3px solid #0c1465; */
  padding: 0px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #0c1465;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #0c1465;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 0px 20px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #F9B233;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 107px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0c1465;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 0px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #4C4C4C;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #0c1465;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #0c1465;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 25px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase !important;
  font-weight: 600;
  color: #0c1465;
  font-family: 'proxima_novaregular' !important;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #0c1465;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #0c1465;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #606060;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  text-transform: uppercase;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #0c1465;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  /* background: #0c1465; */
  color: #606060;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 0px 10px;
  text-align: center;
  width: 32px;
  height: 33px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #F9B233;
  color: #030407;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
}

#footer h3::after {
  content: "";
  position: relative;
  display: block;
  width: 53px;
  height: 6px;
  background: #F9B233;
  bottom: -10px;
  /* left: calc(50% - 20px); */
  left: 0;
}


#footer .copyright {
  /* float: left; */
  margin: auto;
  text-align: center;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

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

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/* Nexa Fonts */

@font-face {
  font-family: 'proxima_nova_altbold';
  src: url('proxima_nova_alt_bold-webfont.woff2') format('woff2'),
    url('proxima_nova_alt_bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'proxima_nova_altlight';
  src: url('proxima_nova_alt_light-webfont.woff2') format('woff2'),
    url('proxima_nova_alt_light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'proxima_nova_altthin';
  src: url('proxima_nova_alt_thin-webfont.woff2') format('woff2'),
    url('proxima_nova_alt_thin-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'proxima_novablack';
  src: url('proxima_nova_black-webfont.woff2') format('woff2'),
    url('proxima_nova_black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'proxima_novabold';
  src: url('proxima_nova_bold-webfont.woff2') format('woff2'),
    url('proxima_nova_bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'proxima_novaextrabold';
  src: url('proxima_nova_extrabold-webfont.woff2') format('woff2'),
    url('proxima_nova_extrabold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'proxima_novathin';
  src: url('proxima_nova_thin-webfont.woff2') format('woff2'),
    url('proxima_nova_thin-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'proxima_novaregular';
  src: url('proximanova-regular-webfont.woff2') format('woff2'),
    url('proximanova-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  /* Ensure it stays in the background */
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* Prevent interaction with the video */
  overflow: hidden;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Sized from the area it has to fill, not from the window width.
     The previous width:100vw / height:56.25vw derived the video's height purely
     from the viewport width, which fits exactly only when the window is 16:9 —
     true of a maximised 1920x1080 screen and almost no restored window. In any
     taller shape the video fell short and the page background showed through
     above and below it. Keeping the 16:9 ratio and letting the excess crop is
     what already happened horizontally. */
  width: auto;
  height: auto;
  aspect-ratio: 16 / 9;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Hide mobile video by default */
.video-mobile {
  display: none;
}

/* .video-container .video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.logo-img {
  transition: opacity 0.3s ease-in-out;
  /* Define the transition for opacity */
}

.seekright-yellow-text {
  color: #F9B233 !important;
}

.seekright-yellow-bg {
  background-color: #F9B233 !important;
}

.seekright-blue-text {
  color: #0c1465 !important;
}

.seekright-blue-bg {
  background-color: #0c1465 !important;
}

.features,
.services,
.counts,
.partners,
.clients,
.products,
.contact,
.events,
.team-sec-3,
.product-features,
.product-sec-2,
.product-sec-3,
.project,
.events01,
.events02,
.casestudy,
.about-sec-3 {
  padding: 50px 0 0 0;
}



.features p {
  width: 85%;
}

.team-sec-3 {
  padding: 50px 0;
}

.partners {
  padding-bottom: 35px !important;
}

.feature-highlite-box-content {
  
}

.feature-highlite-box-img {
  min-height: 400px;
}

/* Product feature box */
.road-feature-box {
  min-height: 575px;
}

.rail-feature-box {
  min-height: 600px;
}
.driver-feature-box{
  min-height: 555px;
}
.river-feature-box {
  min-height: 660px;
}

.warehouse-feature-box {
  min-height: 575px;
}

.logistics-feature-box {
  min-height: 470px;
}

.energy-feature-box {
  min-height: 530px;
}

.waste-feature-box {
  min-height: 665px !important;
}

.construction-feature-box {
  min-height: 550px;
}

.feature-highlite-box-content h2 {
  font-size: 50px;
  font-family: 'proxima_novaregular' !important;
}

.feature-highlite-box-content p {
  font-size: 16px;
  font-family: 'proxima_novaregular' !important;
  font-style: normal !important;
}

.feature-highlite-box-content .counter {
  font-size: 22px;
  font-family: 'proxima_nova_altbold' !important;
  font-style: normal !important;
  color: #F9B233;
  margin-bottom: 0;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); */
}


.disc-box-l {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 230px;
  height: auto;
  min-height: 137px;
  border-radius: 0px 20px;
  overflow: hidden;
  padding: 3%;
  left: -10%;
  top: 19%;
  background: white;
  text-transform: uppercase;
  box-shadow: -91px 74px 71px rgba(0, 0, 0, 0.01), -41px 33px 52px rgba(0, 0, 0, 0.02), -10px 8px 29px rgba(0, 0, 0, 0.02), 0px 0px 0px rgba(0, 0, 0, 0.02);
  z-index: 1;
}

.disc-box-r {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 230px;
  height: auto;
  min-height: 137px;
  border-radius: 0px 20px;
  overflow: hidden;
  padding: 3%;
  right: -77%;
  top: 19%;
  background: white;
  text-transform: uppercase;
  box-shadow: -91px 74px 71px rgba(0, 0, 0, 0.01), -41px 33px 52px rgba(0, 0, 0, 0.02), -10px 8px 29px rgba(0, 0, 0, 0.02), 0px 0px 0px rgba(0, 0, 0, 0.02);
  z-index: 1;
}

.disc-box-l h2,
.disc-box-r h2 {
  margin-bottom: 0;
  line-height: 22px;
  font-size: 2rem;
  font-family: 'proxima_novaregular';
  color: #fff;
}

.disc-box-l p,
.disc-box-r p {
  margin-bottom: 0;
  color: #fff;
}

.small-line {
  display: block;
  width: 50px;
  /* Set your desired width */
  height: 6px;
  background-color: #F9B233;
}

.small-line-blue {
  display: block;
  width: 50px;
  margin: 0px auto 15px auto;
  height: 6px;
  background-color: #0c1465;
}

.spacer,
.spacer-mobile {
  height: 30px;
}

.zoom-hover {
  transition: transform 0.3s ease;
}

.zoom-hover:hover {
  transform: scale(1.1);
}


.btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 0px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #0c1465;
  background: #F9B233;
  text-transform: uppercase;
  font-family: 'proxima_novabold';
  border-radius: 0 20px;
}

.btn-get-started:hover {
  background: #0c1465;
  color: #fff;
}

/* Feature list class */
.rms {
  background: url(../img/seekright-road.png) no-repeat left top;
  background-size: contain;
}

.road-markings {
  background: url(../img/video/road-marking.jpg) no-repeat left top;
  background-size: contain;
}

.assets {
  background: url(../img/over-100.jpg) no-repeat left top;
  background-size: contain;
}

.values,
.count-box {
  font-size: 80px !important;
  margin-left: 0 !important;
  font-family: 'proxima_novaregular';
  color: #F9B233;
  text-align: center;
}

.count-text {
  color: #606060;
  font-family: 'proxima_novaregular';
  font-size: 1.25rem;
  text-transform: uppercase;
  text-align: center;
}

.value-suffix {
  margin-left: 15px !important;
  /* float: left; */
}

.services img {
  width: 50%;
}

.desk-award {
  /* padding: 0px 0px; */
  background-image: url(../img/awards-clients/awards.png);
  background-color: #5d5d5d;
  background-size: cover;
  background-repeat: no-repeat;
}

.pro-box p {
  width: 75%;
  font-size: 16px;
}

.pro-box .pro-img {
  width: 75%;
}

.bord:before {
  content: '';
  height: 100%;
  width: 1px;
  position: absolute;
  left: 0;
  top: 0;
  background: #0c1465;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(#0c1465), to(transparent));
  background: linear-gradient(to top, transparent, #0c1465, transparent);
  opacity: 0.5;
  display: inline-block;
}

.bord:after {
  content: '';
  height: 100%;
  width: 1px;
  position: absolute;
  right: 0;
  top: 0;
  background: #0c1465;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(#0c1465), to(transparent));
  background: linear-gradient(to top, transparent, #0c1465, transparent);
  opacity: 0.5;
  display: inline-block;
}

.about-bord {
  /* box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.1); */
}

.about-bord:after {
  content: '';
  height: 100%;
  width: 1px;
  position: absolute;
  right: 0;
  top: 0;
  background: #0c1465;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(#0c1465), to(transparent));
  background: linear-gradient(to top, transparent, #0c1465, transparent);
  opacity: 0.5;
  display: inline-block;

}

.team-bord:after {
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: -17px;
  background: #0c1465;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(#0c1465), to(transparent));
  background: linear-gradient(to right, transparent, #0c1465, transparent);
  opacity: 0.5;
  display: inline-block;
}

.points-bord:after {
  content: '';
  height: 100%;
  width: 1px;
  position: absolute;
  right: 50px;
  top: 0;
  background: #0c1465;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(#0c1465), to(transparent));
  background: linear-gradient(to top, transparent, #0c1465, transparent);
  opacity: 0.5;
  display: inline-block;
}

.about-bord-w:after {
  content: '';
  height: 100%;
  width: 1px;
  position: absolute;
  right: 0;
  top: 0;
  background: #ffffff;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(#ffffff), to(transparent));
  background: linear-gradient(to top, transparent, #ffffff, transparent);
  opacity: 0.5;
  display: inline-block;

}


hr {
  border: 0;
  height: 1px;
  width: 90% !important;
  margin: auto !important;
  background: #0c1465;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#0c1465), color-stop(transparent), color-stop(transparent), color-stop(#0c1465), color-stop(transparent), color-stop(transparent), color-stop(#0c1465), to(transparent));
  background: linear-gradient(to right, transparent, #0c1465, transparent, transparent, #0c1465, transparent, transparent, #0c1465, transparent);
  opacity: .5;
}

.probox:hover {
  box-shadow: var(--bs-box-shadow) !important;
}

.carousel-item .col-lg-4 {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel-control-prev {
  justify-content: left !important;
}

.carousel-control-next {
  justify-content: right !important;
}

.carousel-caption {
  position: unset !important;
}

.carousel-caption h5 {
  font-size: 30px;
}

.carousel-caption p {
  font-size: 16px;
}


/* Show mobile content */
.show-mobile {
  display: block;
}


/* Show desktop content */
.show-desktop {
  display: block;
}

.swiper-slide {
  /* border-right: solid 1px #0c146536; */
  /* min-height: 520px; */
  /* box-shadow: 0 5px 15px rgba(96, 96, 96, 0.25); */
  padding: 10px;
  border-radius: 5px;
  border: solid 1px #28377c2c;
}


.play_button img {
  border-radius: 5px;
}

/* .swiper-wrapper {
  min-height: 570px;
} */

.new-testimonials-slider, .clients-slider, .testimonials-slider {
  padding: 0 20px !important;
}

.new-testimonials-slider .swiper-slide {
  border: none;
  box-shadow: none;
}

.testimonial-item h3 {
  font-family: 'proxima_novaregular';
  font-size: 21px;
  text-transform: capitalize;
  color: #0c1465;
}

.testi-link {
  width: 25px;
  height: 25px;
}

.testi-link path {
  fill: #0c1465;
}

.testi-link path:hover {
  fill: #F9B233;
}

.testimonial-item h4 {
  font-family: 'proxima_novaregular';
  font-size: 17px;
  color: #030407;
}

.about-sec-1 {
  padding-top: 50px !important;
  padding-bottom: 40px !important;
}

.about-sec-1 h1 {
  padding: 30px 0 0px 0;
  font-family: 'proxima_novaregular';
  font-size: 50px;
}

.about-sec-1 p {
  font-family: 'proxima_novaregular';
  font-size: 16px;
  width: 75%;
}

.about-sec-2 {
  background: url(../img/about-banner-1.jpg) top center no-repeat;
  background-size: cover;
  height: 500px;
}

.about-sec-3 {
  padding-top: 0px !important;
}

.about-sec-3 h4 {
  font-family: 'proxima_novaregular';
  font-size: 40px;
  text-transform: capitalize;
}

.about-sec-3 p {
  font-family: 'proxima_novaregular';
  font-size: 16px;

}

.about-sec-3-1 {
  padding: 30px 0 !important;
}

.about-sec-3-1 h4 {
  font-family: 'proxima_novaregular';
  font-size: 40px;
  text-transform: capitalize;
}

.about-sec-3-1 p {
  font-family: 'proxima_novaregular';
  font-size: 16px;
  width: 70%;
  margin: auto;
  text-align: center;
}

.mission {
  /* min-height: 350px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5%;
}

.team-sec-3 h3,
.team-sec-3 h5 {
  font-family: 'proxima_novaregular';
}

.product-sec-1 {
  padding: 0;
}

.product-sec-1 h1 {
  padding: 30px 0 0px 0;
  font-family: 'proxima_novaregular';
  font-size: 50px;
  font-weight: 600;
}

.product-sec-1 p {
  font-family: 'proxima_novaregular';
  font-size: 16px;
  color: #fff !important;
}

.product-sec-2 {
  background: url(../img/about-banner-1.jpg) top center no-repeat;
  background-size: cover;
  height: 500px;
}

.product-sec-3 img {
  width: 75%;
}

.product-sec-3 h3 {
  font-family: 'proxima_novaregular';
  font-size: 32px;
}

.product-sec-3 .title {
  font-family: 'proxima_novaregular';
  font-size: 20px;
  width: 80%;
}

.product-features {
  padding: 50px 0 !important;
}

.product-features .active {
  font-family: 'proxima_nova_altbold' !important;
  color: #0c1465;
  background: #606060;
}

.product-features .title {
  /* font-family: 'proxima_novaregular'; */
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-family: 'proxima_novabold';
  color: #27348b;
}

.product-features .description {
  font-family: 'proxima_novaregular';
  font-size: 22px;
  margin-bottom: 0;
  display: none;
}

.central-image img {
  width: 100%;
}

.central-image {
  padding: 3%;
}

.feature-text h4 {
  margin-top: 16px;
  text-transform: uppercase;
}

.feature-text ul {
  padding-left: 20px;
}

.feature-text p {
  margin-top: 20px;
  margin: 5px 0;
}

.feature-text {
  text-align: left !important;
  font-size: 17px;
}


/* Video containers  */

#mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* White background for the entire screen */
  z-index: 9000;
  display: none;
}

#boxes .window {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* Center the form */
  width: 440px;
  height: auto; /* Allow auto height for responsive design */
  z-index: 9999;
  padding: 20px;
  border-radius: 0px;
  text-align: center;
  background-color: #ffffff;
}

#boxes #dialog {
  position: fixed;
  width: 100%;
  height: auto;
  padding: 20px;
  background-color: #ffffff; /* Ensure the form has a white background */
  z-index: 9999;
  
}
#boxes #dialog input[type=text],
#boxes #dialog input[type=email],
#boxes #dialog input[type=tel]{
  margin: 5% 0;
  border-radius: 10px;
}
@media (max-width: 768px) {
  #boxes .window {
    width: 90%; /* Adjust width for mobile responsiveness */
  }
}


.maintext {
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  text-decoration: none;
}

/* body {
  background: url('bg.jpg');
} */

#lorem {
  font-family: "Segoe UI", sans-serif;
  font-size: 12pt;
  text-align: left;
}

#popupfoot {
  font-family: "Segoe UI", sans-serif;
  font-size: 16pt;
  padding: 10px 20px;
}

#popupfoot a {
  text-decoration: none;
}

.agree:hover {
  background-color: #D1D1D1;
}

.popupoption:hover {
  background-color: #D1D1D1;
  color: green;
}

.popupoption2:hover {

  color: red;
}

.grid {
  display: grid;
  grid-template-rows:
    repeat(6, 250px);
  grid-template-columns:
    repeat(4, 1fr);
  grid-gap: 5px;
}

.item {
  border-radius: 5px;
}

.item:nth-child(1) {
  grid-row: 1 / 4;
}

.item:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
}

.item:nth-child(3) {
  grid-column: 4 / 4;
  grid-row: 1 / 3;
}

.item:nth-child(4) {
  grid-column: 4 / 4;
  grid-row: 3 / 6;
}

.item:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 3 / 3;
}

.item:nth-child(6) {
  grid-row: 3 / 5;
  grid-column: 3/3;
}

.item:nth-child(7) {
  grid-column: 1 / 3;
  grid-row: 4 / 5;
}

.item:nth-child(8) {
  grid-column: 1 / 1;
  grid-row: 5 / 7;
}

.item:nth-child(9) {
  grid-column: 4 / 4;
  grid-row: 6 / 6;
}

.item:nth-child(10) {
  grid-column: 2 / 4;
  grid-row: 5 / 7;
}

/* .item:nth-child(11) {
 grid-column: 2 / 3;
 grid-row: 6 / 7;
 }
 
 .item:nth-child(12) {
 grid-column: 4 / 4;
 grid-row: 4 / 7;
 } */

/* styling code */

.grid {
  margin: 0px auto;
  max-width: 100%;
}

.grid>.item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.box-title {
  position: relative;
  top: 20px;
  left: 0;
  padding: 10px 15px 10px;
  width: fit-content;
  color: white;
  opacity: 1;
  background: linear-gradient(0deg, rgba(76, 76, 76, 1) 0%, rgba(76, 76, 76, 0.7) 100%);
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.gal-link {
  position: relative;
  top: 0%;
  left: 0%;
  height: 100%;
  display: block;
  width: 100%;
}

@media only screen and (max-width: 930px) {
  .item {
    width: 95%;
    margin: auto;
  }
}

.gal-link::before {
  content: "";
  position: absolute;
  top: 44%;
  left: 45%;
  background: url(../img/play-btn.png) repeat-y center center;
  width: 61px;
  height: 61px;
}

.portfolio {
  padding: 50px 0px 40px 0;
}

.portfolio-video {
  padding: 0;
}

.portfolio h1 {
  font-family: 'proxima_novaregular';
  font-size: 50px;
  padding: 30px 0px;
}



.events01 h1 {
  padding: 50px 0 50px 0;
  font-family: 'proxima_novaregular';
  font-size: 50px;
}

.events01 p {
  font-family: 'proxima_novaregular';
  font-size: 16px;
}

.events02 h2 {
  font-size: 50px;
  text-transform: uppercase;
  font-family: 'proxima_novaregular';
}

#event-single .events02 .date {
  font-size: 16px;
  /* text-transform: uppercase; */
  font-family: 'proxima_novaregular';
}

#event-single .post-author-list {
  font-size: 16px;
}

.two-hr {
  border: 0;
  height: 1px;
  width: 90% !important;
  margin: auto !important;
  background: #0c1465;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#0c1465), color-stop(transparent), color-stop(transparent), color-stop(#0c1465), color-stop(transparent), color-stop(transparent), color-stop(#0c1465), to(transparent));
  background: linear-gradient(to right, transparent, #0c1465, transparent, transparent, #0c1465, transparent);
  opacity: .5;
  margin: 40px auto !important;
}

.full-hr {
  border: 0;
  height: 1px;
  width: 100% !important;
  margin: auto !important;
  background: #0c1465;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#0c1465), color-stop(transparent), color-stop(transparent), color-stop(#0c1465), color-stop(transparent), color-stop(transparent), color-stop(#0c1465), to(transparent));
  background: linear-gradient(to right, transparent, #0c1465, transparent);
  opacity: .5;
  margin: 0px auto 40px auto !important;
}

.full-hr-w {
  border: 0;
  height: 1px;
  width: 100% !important;
  margin: auto !important;
  background: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#ffffff), color-stop(transparent), color-stop(transparent), color-stop(#ffffff), color-stop(transparent), color-stop(transparent), color-stop(#ffffff), to(transparent));
  background: linear-gradient(to right, transparent, #ffffff, transparent);
  opacity: .5;
  margin: 0px auto 10px auto !important;
}

.portfolio p,
.portfolio ul {
  font-size: 16px;
}

.video-content {
  height: 100vh;
}

.hero-banner {
  position: relative;
  /* background: linear-gradient(90deg, rgba(40, 56, 124, 0.4) 0%, rgba(255, 255, 255, 0) 100%); */
  /* background: linear-gradient(90deg, rgba(40, 56, 124, 0.8) 0%, rgba(255, 255, 255, 0) 50%); */
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 50%); Black */
  /* background: linear-gradient(90deg, rgba(18, 47, 216, 0.6) 0%, rgba(255, 255, 255, 0) 50%);  */
  /* background: rgba(0, 0, 0, 0.3); */
  height: 100vh;
}

.banner-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 5% 7%;
}

.hero-banner p {
  font-size: 24px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: 'proxima_novaregular';

}




.construction-case1,
.garbage-case1,
.energy-case1,
.logistics-case1,
.river-case1,
.rail-case1,
.road-case1,
.road-case2 {
  text-align: left;
  padding-left: 0%;
}

.construction-case1 img {
  width: 15%;
}

.energy-case1 img {
  width: 5%;
}

.logistics-case1 img {
  width: 15%;
}

.river-case1 img {
  width: 25%;
}

.rail-case1 img {
  width: 7%;
}

.road-case1 img,
.road-case2 img {
  width: 7%;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #555555;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.blog .blog-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li a.active,
.blog .blog-pagination li a:hover {
  background: #0c1465;
  color: #F9B233;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}


/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 14px;
  color: #555555;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.blog .posts-list .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.post-img-thumb img {
  width: 100% !important;
}

.blog .blog-details .title {
  font-size: 30px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: #0c1465;
}

.blog .blog-details .content {
  margin-top: 20px;
}

.content p {
  font-size: 16px;
}

.blog .blog-details .content h3 {
  font-size: 24px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
  display: none;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 16px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}

.award-image {
  width: 65%;
}

.seekright-btn {
  border-radius: 0px 5px;
  font-size: 13px;
}

.features p {
  font-size: 16px !important;
}

.seekMapButton {
  padding: 2px 9px;
  margin-left: 0px;
  border-radius: 0px 9px 0px 9px;
  color: #0c1465;
  font-size: 18px;
  border: 0px solid #0c1465;
  font-weight: 600;
  text-transform: uppercase;
}

.seekButton {
  padding: 12px 35px;
  margin-left: 30px;
  border-radius: 0px 20px 0px 20px;
  color: #0c1465;
  font-size: 16px;
  border: 1px solid #0c1465;
  font-weight: 600;
  text-transform: uppercase;
}

.seekButton.active {

  color: #fff;
  border: 1px solid #F9B233;
  background-color: #0c1465;
}

.pro-title h2 {
  position: relative;
  top: -60px;
  margin-left: 15px;
}

.pro-title p,
.learn {
  position: relative;
  top: -60px;
}

.pro-title h2::before {
  content: "";
  position: relative;
  display: block;
  width: 6px;
  height: 53px;
  background: #F9B233;
  bottom: -67px;
  left: -15px;
}

#products h2 {
  /* font-size: 1.8rem; */
}

.content-div {
  display: none;
}

.content-div h3 {
  text-transform: uppercase !important;
}

/* Initially display the first div */
#div1 {
  display: block;
  /* margin-top: 30px; */
}



/* Feature */
.feature {
  padding: 2% 0;
  margin: 10px 0;
  cursor: pointer;
}

.feature-style-left {
  padding: 10px 0;
  /* background-color: rgba(236, 236, 236, .9); */
  /* border-radius: 50px 0px 0px 50px; */
  /* margin: 3% 0; */
}

.feature-style-right {
  padding: 10px 0;
  /* background-color: rgba(236, 236, 236, .9);
  border-radius: 0px 50px 50px 0px; */
  /* margin: 3% 0; */
}

.feature-f-hide {
  padding: 2% 0;
  /*border-radius: 5px;*/
}

.feature:hover {
  background-color: rgba(236, 236, 236, 0.9);
  /* background-color: #27348b; */
  /* color: #fff; */
}

.hover-force {
  background-color: rgba(236, 236, 236, .9);
}

.feature-circle {
  width: 50px;
  height: 50px;
  background: #fff !important;
}

.feature-img {
  position: absolute;
  top: 33%;
}

.feature-list {
  margin: 0 20px 0 20px;
  padding: 0 !important;
}

.feature-list .active {
  /* background-color: #0c1465 !important; */
  background: linear-gradient(90deg, rgba(250, 194, 33, 1) 0%, rgba(40, 56, 124, 1) 60%);
  color: #ffffff !important;
}

.feature.active-left {
  background: linear-gradient(90deg, rgba(250, 194, 33, 1) 0%, rgba(40, 56, 124, 1) 60%);
}

.feature.active-right {
  background: linear-gradient(265deg, rgba(250, 194, 33, 1) 0%, rgba(40, 56, 124, 1) 60%);
}

.feature-right .active {
  color: #606060;
}


.feature-details p,
.feature-details ul li {
  font-size: 14px;
  text-align: start;
  /* margin-bottom: 0; */
}

.feature-details ul {
  padding-left: 1%;
}

.feature-details ul li {
  list-style: disc;
  line-height: 22px;
  margin-left: 4%;
  /* color: #606060; */
}

.feature-details h4 {
  margin-bottom: 0;
  font-family: 'proxima_novabold';
}

.feature-left {
  text-align: left;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-family: 'proxima_novabold';
  /* color: #606060; */
}

.feature-right {
  text-align: right;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-family: 'proxima_novabold';
  /* color: #606060; */
}

.feature-icon-right {
  float: left;
}

.feature-icon-left {
  float: right;
}

.hide-details {
  display: none;
  animation: fadeOut 5s
}

.show-details {
  display: block;
  animation: fadeIn 5s
}

.bullet {
  width: 30% !important;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.footer-mid {
  width: 75%;
}

.contact-btn {
  /* position: fixed; */
  /* top: 20px;
  right: 20px; */
  z-index: 1000;
}

.contact-form {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: #4C4C4C;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 1000;
}

.contact-form.active {
  right: 0;
  background: rgb(76, 76, 76, 0.9);
}

.contact-form .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

.overlay.active {
  display: block;
}

.contact-loc h2 {
  position: relative;
  top: 0px;
  margin-left: 0px;
}

.text-3d {
  font-size: 30px !important;
  color: #fff !important;
  letter-spacing: 4px;
  /* text-shadow: 1px 1px 5px #555454, 2px 1px 0 #555454, 2px 2px 0 #555454, 2px 1px 0 #555454, 2px 0px 0 #555454; */
}

.card-text {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.card-text i {
  margin-right: 10px;
  margin-top: 3px;
}

.card-text span {
  display: block;
}

.sidebar {
  /* width: 25%; */
  /* background-color: #ededed; */
  padding: 20px;
  /* box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); */

}

.sidebar h2 {
  text-align: start;
  font-size: 20px !important;
  color: #0c1465 !important;
  margin: 29px 0;
}

#location-list {
  list-style: none;
  padding: 0;
}

.location-list {
  list-style: none;
  padding-left: 43px !important;
}

.location-list li {
  text-transform: uppercase;
  color: #0c1465;
  padding: 5px;
}

.location-details {
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.location-details.show {
  opacity: 1;
}

#location-list li {
  padding: 0px 7px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
  font-size: 16px;
  list-style: none;
}

#location-list li:hover {
  background-color: #ffffff;
}

#location-list li.active {
  background-color: #0c1465;
  color: white;
  padding: 7px;
}

.content {
  width: 75%;
  padding: 0px 20px 0px 20px;
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; */
}

#location-details {
  text-align: center;
}

#map-container {
  width: 100%;
  height: 300px;
  margin-top: 20px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

#map-container img {
  max-width: 100%;
  height: auto;
}
.box-datapoint{
  font-size: 25px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 50px 0;
  /* background: url("../img/testimonials-bg.jpg") no-repeat; */
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.7); */
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials-slider{
  padding: 0 20px;
}

.testimonials-slider .swiper-button-next{

}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
  min-height: 380px;
  padding: 20px;
  border-radius: 0px 40px 0px 40px !important;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #606060;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(96, 96, 96, 0.6);
  font-size: 22px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #606060;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
  opacity: 1;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 90%;
  }
}


.navbar a:hover {
  text-decoration: solid;
}

#video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#player {
  width: 100vh;
  height: 56.25vw;
  min-height: 100vh;
  object-fit: cover;
}



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

.sli-list {
  list-style: none;
  padding: 0;
}

.sli-list li {
  min-height: 400px !important;
}

.sli {
  position: relative;
  margin: 20px;
  overflow: hidden;
  background-color: #f0f0f0;
  transition: all 0.3s ease;
}

.sli-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: zoom 20s linear infinite;
}

.sli:hover .sli-media {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.5);
  }
}

.sli-body {
  position: relative;
  padding: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.sli-title,
.sli-cta {
  color: #0c1465;
  transition: color 0.3s ease;


}

.sli-title {
  margin-top: 40px;
  text-align: left;
  text-transform: uppercase;
  font-family: 'proxima_novabold';
  font-size: 28px;
}

.sli-title::after {
  content: "";
  position: relative;
  display: block;
  width: 40px;
  height: 6px;
  background: #F9B233;
  bottom: 0;
  /* left: calc(50% - 20px); */
  left: 0;
}

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

.sli-cta {
  display: flex;
  justify-content: left;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
}

.sli-icon {
  flex: 0 0 auto;
  /* Prevents icon from growing */
  width: 32px;
  height: 32px;
  background: url(../img/sprite-bg.svg) no-repeat;
  background-position: 0 0;
  /* Adjust as needed */
  margin-right: 8px;
  /* Space between icon and text */
}

.sli-text {
  flex: 0 0 auto;
  /* Prevents text from growing */
  font-size: 16px;
  /* Adjust as needed */
}

.sli-desc {
  font-size: 16px;
  text-align: left;
  transition: opacity 0.3s ease;
}

.sli:hover .sli-title,
.sli:hover .sli-cta {
  color: white;
  fill: #fff;
}

.sli:hover .sli-desc {
  opacity: 0;
}

.sli-cta small {
  text-decoration: underline;
}


.highlight {
  color: #0c1465;
  font-weight: bold;
  font-family: 'proxima_novabold';
  border-radius: 5px;
  text-align: left;
  background-color: #dfdfdf;
}



.client-box {
  border-radius: 0px 15px;
}

.normal-title h2::after {
  content: "";
  position: relative;
  display: block;
  width: 53px;
  height: 6px;
  background: #F9B233;
  bottom: -7px;
  /* left: calc(50% - 20px); */
  left: 0;
  margin-bottom: 20px;
}

.normal-title h1 {
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #0c1465;
  font-family: 'proxima_novaregular';
  width: 70%;
}

.normal-title-product h1 {
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #ffffff;
  font-family: 'proxima_novaregular';
  width: 70%;
}

.normal-title-product h1::after {
  content: "";
  position: absolute;
  display: block;
  width: 53px;
  height: 6px;
  background: #F9B233;
  bottom: 10px;
  /* left: calc(50% - 20px); */
  left: 0;
}

.normal-title h1::after {
  content: "";
  position: absolute;
  display: block;
  width: 53px;
  height: 6px;
  background: #F9B233;
  bottom: 0;
  /* left: calc(50% - 20px); */
  left: 0;
}

/* CONTACT SECTION */
#contact-page .sidebar {
  width: 25%;
}

path {
  fill: #b1a58d;
  transition: fill 1s ease;
}

path.highlighted {
  fill: #F9B233 !important;
  stroke: black !important;
  stroke-width: 2px !important;
}

.video-display {
  width: 100%;
  background-color: #f9f9f9;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);  */
  padding: 20px;
  z-index: 1;
}

#closeButton {
  cursor: pointer;
  float: right;
  font-size: 20px;
  font-weight: bold;
  margin-top: -10px;
  margin-right: -10px;
}

.logo-contact-tl {
  height: 37px;

  margin: auto;
}

.logo-contact-quadrafort {
  height: 60px;

  margin: auto;
}

.logo-contact-ae {
  height: 60px;
  /* width: fit-content; */
  margin: auto;
}

.logo-contact-seekright-head {
  height: 40px;

  margin: auto;
}

.logo-contact-slg {
  height: 60px;

  margin: auto;
}

.logo-contact-experts {
  height: 85px;

  margin: auto;
}

.logo-contact-innoval {
  height: 68px;

  margin: auto;
}

.logo-contact-rysa {
  height: 40px;

  margin: auto;
}

.logo-contact-rms {
  height: 40px;

  margin: auto;
}

.logo-contact-seekright {
  height: 40px;

  margin: auto;
}

.logo-contact-ria {
  height: 67px;

  margin: auto;
}

.logo-contact-moivao {
  height: 85px;

  margin: auto;
}

.contact-email-sec,
.contact-address-sec {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}



/* END CONTACT SECTION */

/* FLOATING ELEMENTS */
#contactBtnMobile {
  bottom: 53% !important;
}

#callBtnMobile {
  bottom: 45.8% !important;
}

#whatsappBtnMobile {
  bottom: 60% !important;
}

#floating-elements {
  position: fixed;
  bottom: 10%;
  right: 5px;
  width: 45px;
  z-index: 1010;
}

#contactBtnMobile,
#callBtnMobile,
#whatsappBtnMobile {
  /* display: none; */
  /* position: fixed; */
  opacity: 1;
  /* right: -7px; */
  z-index: 996;
  color: #fff;
  /* width: 160px;
  height: 40px; */
  transition: all 0.4s;
  border: none;
  background: none;
}

/* #contactBtnDesktop {
  bottom: 65px !important;
}

#callBtnDesktop {
  bottom: 64px !important;
}

#whatsappBtnDesktop {
  bottom: 113px !important;
} */

#callBtnDesktop,
#whatsappBtnDesktop {
  position: fixed;
  opacity: 1;
  right: 150px;
  z-index: 996;
  color: #fff;
  width: 160px;
  height: 40px;
  transition: all 0.4s;
  border: none;
  background: none;
}

#contactBtnDesktop {
  position: fixed;
  opacity: 1;
  right: 36px;
  z-index: 996;
  color: #fff;
  width: 64px;
  /* height: 40px; */
  transition: all 0.4s;
  border: none;
  background: none;
  z-index: 997;
}

#contactBtn {
  bottom: 67px;
}

#callBtn {
  bottom: 135px;
}

#whatsappBtn {
  bottom: 80px;
}

#contactBtnMobile:hover,
#callBtnMobile:hover,
#whatsappBtnMobile:hover {
  transition: all 0.2s;
  right: -12px;
}

/* Highlight .contact-icon and .contact-text on hover of #contactBtn */
#contactBtn:hover .contact-icon,
#contactBtn:hover .contact-text,
#callBtn:hover .contact-icon,
#callBtn:hover .contact-text,
#whatsappBtn:hover .contact-icon,
#whatsappBtn:hover .contact-text {
  transition: all 0.4s;
  background-color: #ffcc00;
  color: #fff;
}

#contactBtn.active {
  /* right: -45px; */
}

.contact-icon {
  border-radius: 0px 10px;
  padding: 8px 7px;
  text-align: center;
  width: 40px;
  background-color: #0c1465;
}

.contact-text {
  border-radius: 0px 10px;
  padding: 8px 7px;
  background-color: #0c1465;
  width: 83px;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-10px);
  }

  50% {
    transform: translateX(10px);
  }

  75% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

@keyframes shiver {
  0% {
    transform: translateX(0);
    color: initial;
    /* Default color */
  }

  10% {
    transform: translateX(-2px);
    color: #ffcc00;
  }

  20% {
    transform: translateX(2px);
    color: #ffcc00;
  }

  30% {
    transform: translateX(-2px);
    color: #ffcc00;
  }

  40% {
    transform: translateX(2px);
    color: #ffcc00;
  }

  50% {
    transform: translateX(-2px);
    color: #ffcc00;
  }

  60% {
    transform: translateX(2px);
    color: #ffcc00;
  }

  70% {
    transform: translateX(-2px);
    color: #ffcc00;
  }

  80% {
    transform: translateX(2px);
    color: #ffcc00;
  }

  90% {
    transform: translateX(-2px);
    color: #ffcc00;
  }

  100% {
    transform: translateX(0);
    color: initial;
    /* Default color */
  }
}

.shiver {
  animation: shiver 0.6s ease-in-out infinite;
}



/* Product page */
.product-grid {
  display: grid;
  grid-template-rows: repeat(4, 250px);
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2px;
  margin: 0px auto;
  max-width: 100%;
}

.product-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.product-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: inherit;
  transition: transform 0.3s ease-out;
  z-index: -1;
  overflow: hidden;
}

.product-item:hover::before {
  transform: scale(1.1);
}

.product-item a {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  color: inherit;
  text-decoration: none;
  z-index: 1;
}


.text-container {
  background: rgba(12, 20, 101, 1);
  border-radius: 0px 17px 0px 17px;
  padding: 15px 57px;
  width: fit-content;
}

.text-container h2 {
  font-family: 'proxima_novaregular' !important;
}

.product-item h2 {
  position: relative;
  z-index: 1;
  color: #ffffff;
  width: 100%;
  text-align: start;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 26px;
}

.product-item h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 0px;
  background: #F9B233;
  bottom: -10px;
  left: 0;
  transition: width 0.3s ease;
}

.product-item h2:hover::after {
  width: 45px;
}

.product-item p {
  position: relative;
  z-index: 1;
  color: #ffffff;
  width: 95%;
  text-align: start;
  line-height: 16px;
}

.product-item:nth-child(1) {
  grid-row: 1 / 2;
}

.product-item:nth-child(2) {
  grid-column: 2 / 2;
  grid-row: 1 / 3;
}

.product-item:nth-child(3) {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}

.product-item:nth-child(4) {
  grid-column: 3 / 4;
  grid-row: 2 / 2;
}

.product-item:nth-child(5) {
  grid-column: 2 / 1;
  grid-row: 2 / 4;
}

.product-item:nth-child(6) {
  grid-row: 3 / 3;
  grid-column: 2 / 3;
}

.product-item:nth-child(7) {
  grid-column: 4 / 4;
  grid-row: 2 / 5;
}

.product-item:nth-child(8) {
  grid-column: 1 / 3;
  grid-row: 4 / 5;
}

.product-item:nth-child(9) {
  grid-column: 3 / 4;
  grid-row: 3 / 5;
}

#countryName {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}

#countryDataContainer {
  font-size: 15px !important;
  text-align: center;
  line-height: 25px;
  text-transform: uppercase;
}

#countryDataContainer p {
  margin-bottom: 0 !important;
}

.border-column {
  position: relative;
  /* Ensure the pseudo-element is positioned relative to the column */
}

.border-column::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background-color: #c7c7c9;
  height: 100%;
}

/* Owl Carosal */



.gsap-reveal-img {
  line-height: 0;
}

.gsap-reveal-img .reveal-wrap {
  position: relative;
  overflow: hidden;
}

.gsap-reveal-img .reveal-wrap .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eeeeee;
  margin-left: -100%;
  z-index: 9;
}

.gsap-reveal-img .reveal-wrap .reveal-content {
  opacity: 0;
  visibility: hidden;
}

.gsap-reveal-img .reveal-wrap .reveal-content .portfolio-item-content h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.gsap-reveal {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .gsap-reveal.gsap-reveal-filter {
    overflow: visible !important;
  }
}

.gsap-reveal .cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
}

.gsap-reveal-hero {
  line-height: 0;
}

.gsap-reveal-hero .reveal-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.gsap-reveal-hero .reveal-wrap .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eeeeee;
  margin-left: -100%;
  z-index: 2;
}

.gsap-reveal-hero .reveal-wrap .reveal-content {
  line-height: 1.5;
  z-index: 1;
  display: inline-block;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}



.owl-3-slider .owl-nav,
.single-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767.98px) {

  .owl-3-slider .owl-nav,
  .single-slider .owl-nav {
    display: none;
  }
}

.owl-3-slider .owl-nav .owl-next,
.owl-3-slider .owl-nav .owl-prev,
.single-slider .owl-nav .owl-next,
.single-slider .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.owl-3-slider .owl-nav .owl-next span,
.owl-3-slider .owl-nav .owl-prev span,
.single-slider .owl-nav .owl-next span,
.single-slider .owl-nav .owl-prev span {
  font-size: 1.2rem;
}

.owl-3-slider .owl-nav .owl-prev,
.single-slider .owl-nav .owl-prev {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  left: -30px;
}

.owl-3-slider .owl-nav .owl-prev:hover,
.single-slider .owl-nav .owl-prev:hover {
  left: -35px;
  color: #0389ff;
}

.owl-3-slider .owl-nav .owl-next,
.single-slider .owl-nav .owl-next {
  right: -30px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.owl-3-slider .owl-nav .owl-next span,
.single-slider .owl-nav .owl-next span {
  display: block;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.owl-3-slider .owl-nav .owl-next:hover,
.single-slider .owl-nav .owl-next:hover {
  right: -35px;
  color: #0389ff;
}


.loader-portfolio-wrap {
  text-align: center;
  display: none;
  opacity: 0;
  visibility: hidden;
  left: 50%;
  top: 0px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
}

.loader-portfolio,
.site-loader {
  width: 2rem;
  height: 2rem;
  margin: 2rem auto;
  border-radius: 50%;
  border: 0.3rem solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  -webkit-animation: 1.5s spin infinite linear;
  animation: 1.5s spin infinite linear;
}

.loader-portfolio.dark,
.site-loader.dark {
  border: 0.3rem solid rgba(0, 0, 0, 0.3);
  border-top-color: #000000;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.portfolio-single-inner .heading-portfolio-single-h2 {
  margin-bottom: 40px;
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .portfolio-single-inner .heading-portfolio-single-h2 {
    font-size: 30px;
  }
}

#portfolio-single-holder .portfolio-single-inner {
  position: relative;
  opacity: 0;
  display: none;
}

.unslate_co--close-portfolio {
  position: absolute;
  top: -10px;
  cursor: pointer;
  z-index: 9;
  padding: 10px 10px 10px 10px;
  right: -10px;
  border: 2px solid transparent;
  border-radius: 30px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.unslate_co--close-portfolio .close-portfolio-label {
  font-size: 14px;
  top: 25px;
  right: -10px;
  width: 150px;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.unslate_co--close-portfolio .wrap-icon-close {
  font-size: 30px;
  position: relative;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.unslate_co--close-portfolio:hover .wrap-icon-close {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.unslate_co--close-portfolio:hover .close-portfolio-lanel {
  opacity: 1;
  left: -10px;
  visibility: visible;
}

.unslate_co--close-portfolio:hover .close-portfolio-label,
.unslate_co--close-portfolio:focus .close-portfolio-label {
  right: 20px;
  opacity: 1;
  visibility: visible;
}

.close-portfolio--content {
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.close-portfolio--content .close-portfolio-label {
  right: 50% !important;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  top: 50px;
}

.detail-v1 .detail-label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1rem;
}

.detail-v1 .detail-val {
  font-size: 16px;
}

.position-relative {
  position: relative;
}

.work-experience {
  margin-bottom: 30px;
  position: relative;
  padding-left: 40px;
}

.work-experience:before {
  font-family: 'icomoon';
  content: "\e8f7";
  color: #ccc;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.2;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.work-experience:hover:before {
  color: #0389ff;
}

.work-experience .position {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0;
}

.work-experience .company {
  font-size: 16px;
}

.work-experience .year {
  display: block;
  font-size: 13px;
}

.service [class*="icon-"] {
  font-size: 50px;
  position: relative;
  display: inline-block;
}

.service [class*="icon-"] img {
  width: 50px;
}

.service [class*="icon-"]:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 35px;
  height: 35px;
  background: rgba(3, 137, 255, 0.2);
  bottom: -0px;
  right: -0px;
  z-index: -1;
}

.service h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}

#map {
  position: relative;
}

#map iframe {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  min-height: 400px;
  height: 100%;
  position: absolute;
}

@media (max-width: 991.98px) {
  #map iframe {
    position: relative;
  }
}

.post-entry .thumb {
  display: block;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 4px;
}

.post-entry .thumb img {
  -webkit-transition: .15s all ease;
  -o-transition: .15s all ease;
  transition: .15s all ease;
}

.post-entry .thumb:hover img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.post-entry h3 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 700;
}

.post-entry h3 a {
  color: #000000;
}

.post-entry .post-meta {
  font-size: 14px;
}

.post-entry .post-meta a {
  color: #000000;
}

.lines-wrap {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .lines-wrap {
    display: none;
  }
}

.lines-wrap .lines-inner {
  position: absolute;
  width: 1140px;
  left: 50%;
  margin-left: -570px;
  top: 0;
  height: 100%;
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
}

.lines-wrap .lines-inner .lines {
  position: absolute;
  left: 33.333333%;
  right: 33.333333%;
  height: 100%;
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
}

#about-section {
  margin-top: 7rem;
}

#about-section .container {
  background: #0389ff;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}

#about-section .container .author-wrap {
  margin-top: -150px;
}

.grid-item {
  position: relative;
}

.grid-item:before {
  content: '';
  display: inline-block;
  padding-top: 20rem;
}

.grid-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-item {
  position: relative;
}

.blog-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.portfolio-item {
  overflow: hidden;
}

.portfolio-item img {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  position: relative;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.portfolio-item:hover img {
  -webkit-transform: scale(1.09);
  -ms-transform: scale(1.09);
  transform: scale(1.09);
}

.portfolio-item,
.blog-item {
  display: block;
  overflow: hidden;
  position: relative;
}

.portfolio-item .overlay,
.blog-item .overlay {
  position: relative;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.portfolio-item .overlay,
.portfolio-item .overlay:before,
.blog-item .overlay,
.blog-item .overlay:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.portfolio-item .overlay:before,
.blog-item .overlay:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
}

.portfolio-item .wrap-icon,
.blog-item .wrap-icon {
  position: absolute;
  right: 20px;
  color: #ffffff;
  top: 20px;
}

.portfolio-item .portfolio-item-content,
.blog-item .portfolio-item-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.portfolio-item .portfolio-item-content h3,
.portfolio-item .portfolio-item-content p,
.blog-item .portfolio-item-content h3,
.blog-item .portfolio-item-content p {
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.portfolio-item .portfolio-item-content h3,
.blog-item .portfolio-item-content h3 {
  font-size: 18px;
}

.portfolio-item .portfolio-item-content p,
.blog-item .portfolio-item-content p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.portfolio-item:hover .overlay,
.blog-item:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.blog-item {
  margin-left: 0 !important;
}

.blog-item .overlay {
  opacity: 1;
  visibility: visible;
}

.blog-item:hover .overlay {
  opacity: 0;
  visibility: hidden;
}

.filter-wrap {
  position: relative;
}

.filter-wrap .filter {
  font-size: 14px;
  color: #ffffff;
}

.filter-wrap .filter a {
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.filter-wrap .filter a:hover {
  color: #ffffff;
}

.filter-wrap .filter a.active {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .filter-wrap .filter {
    background: #000000;
    z-index: 9;
    position: absolute;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    right: 0;
    padding: 20px;
    top: 10px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }

  .filter-wrap .filter.active {
    opacity: 1;
    visibility: visible;
  }

  .filter-wrap .filter a {
    display: block;
  }
}

/* Isotope Transitions
------------------------------- */
.isotope,
.isotope .item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: top, left, opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.custom-block {
  margin-bottom: 30px;
}

.custom-block .section-title {
  font-size: 18px;
  font-weight: 700;
}

.custom-accordion .accordion-item {
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: #ffffff;
  background: #43434d;
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.custom-accordion .accordion-item .btn-link:before {
  font-family: 'icomoon';
  content: "\f067";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
}

.custom-accordion .accordion-item .btn-link:hover {
  background: #484852;
}

.custom-accordion .accordion-item .btn-link[aria-expanded="true"] {
  font-weight: 700;
  color: #ffffff !important;
  background: #0389ff;
}

.custom-accordion .accordion-item .btn-link[aria-expanded="true"]:before {
  font-family: 'icomoon';
  content: "\f068";
  position: absolute;
  color: #ffffff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
}

.custom-accordion .accordion-item.active {
  z-index: 2;
}

.custom-accordion .accordion-item.active .btn-link {
  color: #ffffff;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
}

.custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: #888;
}

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 18px;
}

.control .caption {
  position: relative;
  top: -3px;
  font-size: 16px;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 4px;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input~.control__indicator,
.control input:focus~.control__indicator {
  background: #ccc;
}

.control input:checked~.control__indicator {
  background: #0389ff;
}

.control:hover input:not([disabled]):checked~.control__indicator,
.control input:checked:focus~.control__indicator {
  background: #1d95ff;
}

.control input:disabled~.control__indicator {
  background: #e6e6e6;
  opacity: 0.9;
  pointer-events: none;
}

.control__indicator:after {
  font-family: 'icomoon';
  content: '\e5ca';
  position: absolute;
  display: none;
  font-size: 14px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.control input:checked~.control__indicator:after {
  display: block;
  color: #fff;
}

.control--checkbox .control__indicator:after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.control--checkbox input:disabled~.control__indicator:after {
  border-color: #7b7b7b;
}

.control--checkbox input:disabled:checked~.control__indicator {
  background-color: #0389ff;
  opacity: .2;
}

.gal-item {
  display: block;
  margin-bottom: 8px;
}

.gal-item img {
  border-radius: 4px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  opacity: 1;
}

.gal-item:hover img {
  opacity: .5;
}

.social-icons li {
  display: inline-block;
}

.social-icons li a {
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  background: #303030;
}

.social-icons li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.social-icons li a:hover {
  color: #ffffff;
}

.social-icons li:first-child a {
  padding-left: 0;
}

.social-icons.light li a {
  color: #000000;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  background: #f8f9fa;
}

.video-wrap {
  position: relative;
  display: block;
}

.video-wrap .play-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.video-wrap .play-wrap>span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-wrap:hover .play-wrap {
  width: 60px;
  height: 60px;
}

.owl-single.dots-absolute .owl-dots,
.owl-carousel.dots-absolute .owl-dots {
  bottom: 40px;
}

.owl-single.dots-absolute .owl-dots .owl-dot span,
.owl-carousel.dots-absolute .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
}

.owl-single .owl-dots,
.owl-carousel .owl-dots {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.owl-single .owl-dots .owl-dot,
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 5px;
}

.owl-single .owl-dots .owl-dot span,
.owl-carousel .owl-dots .owl-dot span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.owl-single .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot.active span {
  background: #0389ff;
}

.owl-single.no-dots .owl-dots,
.owl-carousel.no-dots .owl-dots {
  display: none;
}

.owl-single.no-nav .owl-nav,
.owl-carousel.no-nav .owl-nav {
  display: none;
}

.testimonial {
  max-width: 500px;
  text-align: center;
  margin-bottom: 30px;
}

.testimonial .name {
  font-size: 18px;
  color: #000000;
}

.testimonial .img-wrap img {
  margin: 0 auto;
  width: 70px;
  border-radius: 50%;
}

.list-check li {
  display: block;
  padding-left: 30px;
  position: relative;
}

.list-check li:before {
  content: "\e5ca";
  font-family: 'icomoon';
  position: absolute;
  top: -.3rem;
  font-size: 20px;
  left: 0;
}

.owl-single .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767.98px) {
  .owl-single .owl-nav {
    display: none;
  }
}

.owl-single .owl-nav .owl-prev,
.owl-single .owl-nav .owl-next {
  position: absolute;
  top: 0;
}

.owl-single .owl-nav .owl-prev span,
.owl-single .owl-nav .owl-next span {
  display: block;
  background: #ffffff;
  padding: 15px;
}

.owl-single .owl-nav .owl-prev {
  left: -30px;
}

.owl-single .owl-nav .owl-next {
  right: -30px;
}

.owl-single .owl-nav .owl-next>span {
  position: relative;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.ul-check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.ul-check li:before {
  position: absolute;
  left: 0;
  top: -.2rem;
  content: "\e5ca";
  font-size: 20px;
  font-family: 'icomoon';
}

.ul-check.primary li:before {
  color: #0389ff;
}

.ul-check.white li:before {
  color: #ffffff;
}

.site-footer {
  padding: 70px 0;
}

.site-footer a {
  color: #777;
  position: relative;
  display: inline-block;
}

.site-footer a:hover {
  color: #0389ff;
}

.site-footer a:hover:before {
  background: #0389ff;
}

.site-footer .btn:before {
  display: none;
}

.site-footer .widget {
  margin-bottom: 40px;
  display: block;
}

.site-footer .widget h3 {
  font-size: 16px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 30px;
}

.site-footer .widget .links li {
  margin-bottom: 10px;
}

.site-footer .social li {
  display: inline-block;
}

.site-footer .social li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  background: #0389ff;
  border-radius: 50%;
  color: #ffffff;
}

.site-footer .social li a:before {
  display: none;
}

.site-footer .social li a>span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-footer .social li a:hover {
  background: #36a1ff;
  color: #ffffff;
}

.forward-arrow::before {
  content: "";
  background: url(../img/hoto-arrow.png) no-repeat center center;
  background-size: contain;
  position: relative;
  font-size: 24px;
  display: block;
  width: 100px;
  height: 24px;
  bottom: -47%;
  left: 2%;
  transform: translateX(-50%);
}

.how-it-works {
  position: relative;
  z-index: 1;
}

.forward-arrow {
  position: relative;

}

.asset-slider .swiper-wrapper,
.asset-slider2 .swiper-wrapper {
  position: relative;
}

.asset-slider .swiper-slide,
.asset-slider2 .swiper-slide {
  box-shadow: none !important;
  padding: 0px !important;
}

.asset-slider .swiper-slide h6,
.asset-slider2 .swiper-slide h6 {
  text-align: center;
  text-transform: uppercase;
}

.asset-slider .swiper-slide::after,
.asset-slider2 .swiper-slide::after {
  content: "";
  position: absolute;
  top: 34%;
  left: 42%;
  background: url(../img/play-btn.svg) repeat-y center center;
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0.8;
}

.asset-slider .swiper-slide:hover,
.asset-slider2 .swiper-slide:hover {
  cursor: pointer;
}

.asset-slider .swiper-slide:hover::after,
.asset-slider2 .swiper-slide:hover::after {
  transform: scale(1.2);
  opacity: 1;
}

/* Existing gradient overlay styles */
.asset-slider .swiper-wrapper::before,
.asset-slider .swiper-wrapper::after,
.asset-slider2 .swiper-wrapper::before,
.asset-slider2 .swiper-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  /* Adjust the width of the gradient overlay as needed */
  z-index: 1;
  pointer-events: none;
  /* Allow clicks to pass through the overlay */
}

.asset-slider .swiper-wrapper::before,
.asset-slider2 .swiper-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
}

.asset-slider .swiper-wrapper::after,
.asset-slider .swiper-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.7), transparent);
}

.play-btn path {
  transition: fill 0.3s;
  /* Smooth transition for fill color */
}

.play-btn:hover path {
  fill: gray;
  /* Change fill color on hover */
}

.hidden-event-single {
  display: none;
  ;
}

.yt-video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #fff;
}

.yt-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #0c1465;
  /* Change this to fit your design */
  /* background-color: rgba(255, 255, 255, 0.8); */
  /* Background color with some opacity */
  border-radius: 50%;
  width: 26px;
  height: 26px;
  line-height: 30px;
  text-align: center;
  font-size: 18px;
}

.swiper-button-next {
  right: -4px;
}

.swiper-button-prev {
  left: -4px;
}

.man-name {
  font-size: 22px;
  text-transform: uppercase;
  font-family: 'proxima_novabold' !important;
}

.man-desi {
  font-size: 18px;
  text-transform: capitalize;
}

.country {
  cursor: pointer !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 25px !important;
}

.banner-spacer {
  height: 13%;
}

/* Case study */
.casestudy {
  margin-top: 50px !important;
}

.casestudy p {
  font-size: 16px;
}

.casestudy h3 {
  text-transform: uppercase !important;
}

.product-case-logo {
  padding: 0;
}

.road-case-logo img {
  height: 83px;
}



.team-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.team-member {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-member img {
  width: 60%;
  /* border-radius: 50%; */
  object-fit: cover;
}

.member-detail {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #606060;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 20px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 100px;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

.member-content {
  text-align: center;
  width: 100%;
  height: 100%;
}

.member-image {
  object-fit: cover;
  /* margin-bottom: 20px; */
}

.member-description h2 {
  text-align: left;
}
.member-description h5 {
  font-weight: normal;
  text-align: left;
  margin-top: 0;
  /* font-style: italic; */
}
.description-content p {
  line-height: 1.6;
  text-align: left;
}


.iti__country {
  display: block !important; /* Force display */
}

.iti-mobile .iti--container{
  z-index: 9999;
}

.iti--separate-dial-code{
  width: 100% !important;
}
.iti {
  position: relative;
  display: inline-block; }
  .iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .iti__hide {
    display: none; }
  .iti__v-hide {
    visibility: hidden; }
  .iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }
  .iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px; }
  .iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px; }
  .iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555; }
    .iti__arrow--up {
      border-top: none;
      border-bottom: 4px solid #555; }
  .iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
    .iti__country-list--dropup {
      bottom: 100%;
      margin-bottom: -1px; }
    @media (max-width: 500px) {
      .iti__country-list {
        white-space: normal; } }
  .iti__flag-box {
    display: inline-block;
    width: 20px; }
  .iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #CCC; }
  .iti__country {
    padding: 5px 10px;
    outline: none; }
  .iti__dial-code {
    color: #999; }
  .iti__country.iti__highlight {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti__flag-box, .iti__country-name, .iti__dial-code {
    vertical-align: middle; }
  .iti__flag-box, .iti__country-name {
    margin-right: 6px; }
  .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }
  .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0; }
  .iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer; }
    .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }
  .iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
  .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
    cursor: default; }
    .iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
    .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
      background-color: transparent; }
  .iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px; }
  .iti--container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }
    .iti--container:hover {
      cursor: pointer; }

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%; }

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em; }

.iti__flag {
  width: 20px; }
  .iti__flag.iti__be {
    width: 18px; }
  .iti__flag.iti__ch {
    width: 15px; }
  .iti__flag.iti__mc {
    width: 19px; }
  .iti__flag.iti__ne {
    width: 18px; }
  .iti__flag.iti__np {
    width: 13px; }
  .iti__flag.iti__va {
    width: 15px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-size: 5652px 15px; } }
  .iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px; }
  .iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px; }
  .iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px; }
  .iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px; }
  .iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px; }
  .iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px; }
  .iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px; }
  .iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px; }
  .iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px; }
  .iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px; }
  .iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px; }
  .iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px; }
  .iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px; }
  .iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti__flag.iti__un {
    height: 14px;
    background-position: -5241px 0px; }
  .iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px; }
  .iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px; }
  .iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px; }
  .iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px; }
  .iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px; }
  .iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px; }
  .iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px; }
  .iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px; }
  .iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px; }
  .iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px; }
  .iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px; }
  .iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px; }
  .iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px; }
  .iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px; }
  .iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px; }
  .iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px; }
  .iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px; }
  .iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px; }

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../img/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-image: url("../img/flags@2x.png"); } }

.iti__flag.iti__np {
  background-color: transparent; }

/* Disaster style */
.bg-F3F5FA{ background-color: #F3F5FA; }
.bg-ffffff{ background-color: #ffffff;}
.benefit-pic img{ border-radius: 10px;}
#benefits .feature-container{ border-radius: 10px!important; border: 1px solid #cccccc; box-shadow: 0 0 0 transparent; background-color: #f7f7f7;}
@media screen and (min-width:768px){
  #problem-we-solve .col-md-4{ width:32%}
  #benefits .col-md-4{ width:32%}
}
@media screen and (max-width:767px){
  #benefits .row{ row-gap: 30px;}
  .feature-details img{ margin:  0 0 25px;}
  .feature-details h4{ margin-bottom: 10px;}
  #problem-we-solve .row{ row-gap: 30px;}
  body .normal-title-product h1 { font-size: 40px !important; width: 100%!important;   }
}