/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Bakbak+One&family=Roboto:wght@400;500;700&display=swap");

@font-face {
  font-family: "Segoe UI Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Segoe UI Regular"), url("/fonts/Segoe UI.woff") format("woff");
}

@font-face {
  font-family: "Segoe UI Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Segoe UI Italic"), url("/fonts/ UI Italic.woff") format("woff");
}

@font-face {
  font-family: "Segoe UI Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Segoe UI Bold"), url("/fonts/Segoe UI Bold.woff") format("woff");
}

@font-face {
  font-family: "Segoe UI Bold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Segoe UI Bold Italic"),
    url("/fonts/Segoe UI Bold Italic.woff") format("woff");
}
body {
  background: #fff;
  color: #444;
  font-family: "Segoe UI Regular";
  font-style: normal;
  font-weight: normal;
}

a {
  color: #6FA8DC;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #6FA8DC;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Segoe UI Regular";
  font-style: normal;
  font-weight: normal;
  padding: 0;
}
h1 {
  font-size: 30px;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  padding: 0;
  height: 40px;
}
#topbar .contact-info i {
  font-style: normal;
  color: #6FA8DC;
}
#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #444;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #6FA8DC;
}
#topbar .social-links a {
  color: #555;
  padding: 0 15px;
  display: inline-block;
  line-height: 1px;
  border-left: 1px solid #e9e9e9;
}
#topbar .social-links a:hover {
  color: #6FA8DC;
  border-top: none;
}
#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}
#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
#header #logo h1 a {
  color: #3C5A99;
}
#header #logo h1 a span {
  color: #6FA8DC;
}
#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
  width: auto;
}
@media (max-width: 768px) {
  #header {
    height: 60px;
  }
  #header #logo h1 {
    font-size: 34px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.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 0 10px 20px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #6FA8DC;
  border-top: 2px #6FA8DC solid;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #6FA8DC;
}
.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: #3C5A99;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

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

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(8, 30, 91, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #3C5A99;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #6FA8DC;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.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: #6FA8DC;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

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

/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 30px;
}
.section-header h2 {
  font-size: 32px;
  color: #3C5A99;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}
.section-header h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #6FA8DC;
  bottom: 0;
  left: 0;
}
.section-header p {
  padding: 0;
  margin: 0;
}

/* Hero Section
--------------------------------*/
#hero {
  background-image: url("/assets/img/hero-bg.jpg");
  background-size: cover;
  background-position: center ;
  height: 90vh !important;
}

#hero .content h2 {
  color: #333d45;
  font-weight: normal;
  font-size: 46px;
  margin-bottom: 20px;
}

#hero .content h2 span {
  color: #6FA8DC !important;
}
#hero .content h3 {
  color: #333d45;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  margin-bottom: 50px;
}

#hero .content .direct {
  color: #333d45;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 50px;
  font-style: normal;
}

#hero .content h3 span {
  font-weight: bold;
  line-height: 26px;
}
#hero .content a {
  padding: 15px 40px;
  background: #6FA8DC;
  color: #fff;
}
#hero .content a:hover {
  border: #6FA8DC solid 2px;
  background: #fff;
  color: #6FA8DC;
}
#hero .content h3 a.hero-text-link {
  padding: 0;
  background: transparent;
  color: #333d45;
  text-decoration: underline;
  transition: 0.5s;
}
#hero .content h3 a.hero-text-link:hover {
  border: none;
  background: transparent;
  color: #6FA8DC;
  text-decoration: underline;
}

#hero .content p {
  color: #565559;
  font-weight: bold;
}

/* Services Section
--------------------------------*/
#services {
  padding: 40px 0;
  background: #6FA8DC;
  text-align: center;
}
#services .box {
  padding: 25px;
  background: #fff;
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#services .small-boxs {
  padding: 12px;
  background: #fff;
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
#services .box:hover,
#services .small-boxs:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}

#services .box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 19px;
}

#services .small-boxs h4 {
  font-weight: 700;
  font-size: 16px;
}

#services .small-box .title-2 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
}
#services .box a {
  color: #444;
  flex-direction: column;
  padding-top: 12px;
}

#services .small-boxs a {
  color: #444;
  flex-direction: column;
  padding-top: 2px;
}

#services .box a:hover,
#services .small-boxs a:hover {
  color: #6FA8DC;
}

#services .box p,
#services .small-boxs p {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 20px;
  text-align: center;
}

#services .box-icon {
  height: 60px;
  margin: 12px;
}

#services .small-box-icon {
  height: 45px;
  margin: 6px;
}
@media (max-width: 767px) {
  #services .box .box,
  #services .small-boxs {
    margin-bottom: 20px;
  }
  #services .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #services .box h4,
  #services .box p,
  #services .small-boxs h4,
  #services .small-boxs p {
    margin-left: 0;
    text-align: center;
  }
}

/* section 0
--------------------------------*/
#section-0 {
  background: #f5f3f3;
  background-size: cover;
  padding: 60px 0 70px;
}

#section-0 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-0 a:hover,
#section-0 a:active,
#section-0 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

.workflow-diagram {
  background: #fff;
  border: 1px solid #e6edf3;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.workflow-circle {
  position: relative;
  height: 380px;
  max-width: 620px;
  margin: 0 auto;
}

.workflow-node {
  background: #e1f1f9;
  color: #333d45;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 165px;
  cursor: pointer;
  z-index: 2;
}

.workflow-node i {
  color: #3C5A99;
  font-size: 14px;
}

.workflow-node.pos-1 i { color: #2d7ff9; }
.workflow-node.pos-2 i { color: #22a06b; }
.workflow-node.pos-3 i { color: #f59e0b; }
.workflow-node.pos-4 i { color: #7c3aed; }
.workflow-node.pos-5 i { color: #0ea5e9; }
.workflow-node.pos-6 i { color: #8b5cf6; }
.workflow-node.pos-7 i { color: #16a34a; }
.workflow-node.pos-8 i { color: #ef4444; }
.workflow-node.pos-9 i { color: #e11d48; }
.workflow-node.pos-10 i { color: #0891b2; }

.workflow-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.workflow-link:focus-visible {
  outline: 2px solid #6FA8DC;
  outline-offset: 2px;
  border-radius: 6px;
}

.workflow-node::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translate(-50%, -100%);
  background: #3C5A99;
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.3;
  width: 240px;
  max-width: 240px;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  z-index: 1000;
}

.workflow-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translate(-50%, -100%);
  border: 6px solid transparent;
  border-top-color: #3C5A99;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 1000;
}

.workflow-node:hover {
  z-index: 1000;
}

.workflow-node:hover::after,
.workflow-node:hover::before {
  opacity: 1;
}

.workflow-arrow {
  position: absolute;
  transform: translate(-50%, -50%);
  color: #6FA8DC;
  font-size: 16px;
}

.workflow-arrow i {
  display: block;
}

.workflow-arrow.pos-a1 { left: 62%; top: 9%; transform: translate(-50%, -50%) rotate(20deg); }
.workflow-arrow.pos-a2 { left: 80%; top: 22%; transform: translate(-50%, -50%) rotate(45deg); }
.workflow-arrow.pos-a3 { left: 92%; top: 43%; transform: translate(-50%, -50%) rotate(90deg); }
.workflow-arrow.pos-a4 { left: 82%; top: 65%; transform: translate(-50%, -50%) rotate(135deg); }
.workflow-arrow.pos-a5 { left: 62%; top: 80%; transform: translate(-50%, -50%) rotate(160deg); }
.workflow-arrow.pos-a6 { left: 38%; top: 80%; transform: translate(-50%, -50%) rotate(200deg); }
.workflow-arrow.pos-a7 { left: 18%; top: 65%; transform: translate(-50%, -50%) rotate(225deg); }
.workflow-arrow.pos-a8 { left: 8%; top: 43%; transform: translate(-50%, -50%) rotate(270deg); }
.workflow-arrow.pos-a9 { left: 20%; top: 22%; transform: translate(-50%, -50%) rotate(315deg); }
.workflow-arrow.pos-a10 { left: 38%; top: 9%; transform: translate(-50%, -50%) rotate(340deg); }

.workflow-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #6FA8DC;
  color: #fff;
  border-radius: 999px;
  padding: 14px 40px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  min-width: 180px;
}

.hero-subline {
  display: block;
  color: #6FA8DC;
  font-size: 24px;
  margin-top: 6px;
}

.workflow-node.pos-1 { left: 50%; top: 4%; }
.workflow-node.pos-2 { left: 76%; top: 12%; }
.workflow-node.pos-3 { left: 92%; top: 30%; }
.workflow-node.pos-4 { left: 92%; top: 56%; }
.workflow-node.pos-5 { left: 78%; top: 78%; }
.workflow-node.pos-6 { left: 50%; top: 92%; }
.workflow-node.pos-7 { left: 22%; top: 78%; }
.workflow-node.pos-8 { left: 8%; top: 56%; }
.workflow-node.pos-9 { left: 8%; top: 30%; }
.workflow-node.pos-10 { left: 24%; top: 12%; }

@media (max-width: 991px) {
  .workflow-circle {
    height: auto;
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .workflow-node,
  .workflow-center {
    position: static;
    transform: none;
    white-space: normal;
  }

  .workflow-arrow {
    display: none;
  }
}

/* section 1
--------------------------------*/
#section-1 {
  background: #e1f1f9;
  background-size: cover;
  padding: 40px 0;
}

#section-1 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-1 a:hover,
#section-1 a:active,
#section-1 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

.align-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-1-title {
  color: #333d45;
  font-size: 28px;
  font-weight: normal;
}

.section-1-title span {
  color: #6FA8DC;
}

.section-1-text {
  color: #565559;
}

.section-1-text span {
  font-weight: bold;
}

#section-1 img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* section 2
--------------------------------*/
#section-2 {
  background: #f5f3f3;
  background-size: cover;
  padding: 40px 0;
}

#section-2 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-2 a:hover,
#section-2 a:active,
#section-2 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

#section-2 img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* section 3
--------------------------------*/
#section-3 {
  background: #fff;
  background-size: cover;
  padding: 40px 0;
}

#section-3 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-3 a:hover,
#section-3 a:active,
#section-3 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

#section-0 ul li:has(a)::marker,
#section-1 ul li:has(a)::marker,
#section-2 ul li:has(a)::marker,
#section-3 ul li:has(a)::marker,
#section-4 ul li:has(a)::marker,
#section-5 ul li:has(a)::marker,
#section-6 ul li:has(a)::marker,
#section-7 ul li:has(a)::marker,
#section-8 ul li:has(a)::marker,
#section-9 ul li:has(a)::marker,
#section-10 ul li:has(a)::marker,
#section-11 ul li:has(a)::marker,
#section-12 ul li:has(a)::marker,
#section-13 ul li:has(a)::marker,
#section-14 ul li:has(a)::marker {
  color: #6FA8DC;
}

#section-3 img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* section 4
--------------------------------*/
#section-4 {
  background: #fff;
  background-size: cover;
  padding: 40px 0;
}

#section-4 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-4 a:hover,
#section-4 a:active,
#section-4 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

#section-4 img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* section 5
--------------------------------*/
#section-5 {
  background: #f2f2f2;
  background-size: cover;
  padding: 40px 0;
}

#section-5 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-5 a:hover,
#section-5 a:active,
#section-5 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

#section-5 .section-2-title a {
  color: #333d45;
  text-decoration: none;
}

#section-5 .section-2-title span {
  color: #6FA8DC;
}

#section-5 img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* section 6
--------------------------------*/
#section-6 {
  background: #fff;
  background-size: cover;
  padding: 40px 0;
}

#section-6 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-6 a:hover,
#section-6 a:active,
#section-6 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

#section-6 img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

#section-7 {
  background: #f5f3f3;
  background-size: cover;
  padding: 40px 0;
}

#section-7 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-7 a:hover,
#section-7 a:active,
#section-7 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

#section-7 h2 {
  color: #333d45;
}

#section-7 h2 span {
  color: #6FA8DC;
}

#section-7 img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

#section-7 .section-7-icon img {
  width: 150px;
  height: auto;
  display: flex;
  justify-content: right;
}

/* section 8
--------------------------------*/
#section-8 {
  background: #fff;
  background-size: cover;
  padding: 40px 0;
}

#section-8 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-8 a:hover,
#section-8 a:active,
#section-8 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

#section-8 img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* section 9
--------------------------------*/
#section-9 {
  background: #f5f3f3;
  background-size: cover;
  padding: 40px 0;
}

#section-9 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-9 a:hover,
#section-9 a:active,
#section-9 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

#section-9 img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* section 10
--------------------------------*/
#section-10 {
  background: #fff;
  background-size: cover;
  padding: 40px 0;
}

#section-10 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-10 a:hover,
#section-10 a:active,
#section-10 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

#section-10 img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* section 11
--------------------------------*/
#section-11 {
  background: #f5f3f3;
  background-size: cover;
  padding: 40px 0;
}

#section-11 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-11 a:hover,
#section-11 a:active,
#section-11 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

#section-11 img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* section 12
--------------------------------*/
#section-12 {
  background: #e1f1f9;
  background-size: cover;
  padding: 40px 0;
}

#section-12 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-12 a:hover,
#section-12 a:active,
#section-12 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

#section-12 img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* section 13
--------------------------------*/
#section-13 {
  background: #fff;
  background-size: cover;
  padding: 40px 0;
}

#section-13 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-13 a:hover,
#section-13 a:active,
#section-13 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

/* section 14
--------------------------------*/
#section-14 {
  background: #f5f3f3;
  background-size: cover;
  padding: 40px 0;
}

#section-14 a {
  color: #333d45;
  text-decoration: none;
  transition: 0.5s;
}

#section-14 a:hover,
#section-14 a:active,
#section-14 a:focus {
  color: #6FA8DC;
  text-decoration: none;
}

/*--------------------------------------------------------------
product-box
---------------------------------------------------------------*/
#product-box {
  padding: 40px 0;
  background: #fff;
  text-align: center;
}
#product-box .box {
  background: #fff;
  padding: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 2px 2px 4px #0000002d;
}

#product-box .box {
  position: relative;
}
#product-box .box:before,
#product-box .box:after,
#product-box .box > :first-child:before,
#product-box .box > :first-child:after {
  position: absolute;
  content: " ";
  width: 40px;
  height: 40px;
  border-color: #6FA8DC; /* or whatever colour */
  border-style: solid; /* or whatever style */
}
#product-box .box:before {
  top: 0;
  left: 0;
  border-width: 3px 0 0 3px;
}
#product-box .box:after {
  border: none;
  top: 0;
  right: 0;
  border-width: 3px 3px 0 0;
}
#product-box .box > :first-child:before {
  bottom: 0;
  right: 0;
  border-width: 0px 3px 3px 0px;
}
#product-box .box > :first-child:after {
  border: none;
  bottom: 0;
  left: 0;
  border-width: 0 0 3px 3px;
}

#product-box .box p {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 20px;
  text-align: center;
}

#product-box .box h4 {
  font-weight: bold;
}

@media (max-width: 767px) {
  #product-box .box .box {
    margin-bottom: 20px;
  }

  #product-box .box h4,
  #product-box .box p {
    margin-left: 0;
    text-align: center;
  }
}

.btn-product a {
  padding: 20px 40px;
  background: #6FA8DC;
  color: #fff;
}

.btn-product a:hover {
  padding: 20px 40px;
  background: #6FA8DCab;
  color: #fff;
}

.btn-product {
  margin: 50px !important;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafafa;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

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

.portfolio-details img {
  width: 100%;
}
.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 #50d8af;
}
.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #50d8af;
}
.portfolio-details .portfolio-info {
  margin-bottom: 20px;
  min-height: 200px;
  padding: 30px;
  box-shadow: 0px 0 30px rgba(12, 46, 138, 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;
}

.search input {
  border: 1px #333d4528 solid;
  outline: none;
}

.search-wrap .search {
  position: relative;
  width: 100%;
  height: auto;
}

.search-wrap .search input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 10px 20px;
  border-radius: 3px;
}

.search-wrap .search .search-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: auto;
  cursor: pointer;
}
#search-section {
  min-height: 60vh;
  background: #6FA8DC41;
}
#search-section .container {
  width: 60%;
}

#search-section .search-box {
  width: 90%;
}

#results,
#results ul,
#results a {
  list-style: none;
  text-decoration: none;
  margin: 0 !important;
  padding: 0px;
  color: #333d45;
}

#results a {
  border-bottom: 2px #6FA8DC solid;
  color: #6FA8DC;
}
#results p {
  margin: 10px 0px;
}
.categories ul li {
  padding-bottom: 15px;
  border-bottom: #333d4536 1px solid;
}

.categories ul li:last-child {
  border-bottom: none;
}
.categories ul li a {
  font-weight: normal;
  color: #333d45;
  text-transform: uppercase;
}

.list-page li {
  list-style: none;
  border-bottom: #5655598e 1px solid;
}

.list-page li:last-child {
  border-bottom: none;
}

.list-page .date {
  padding-top: 25px;
  color: #333d459f;
}
.list-page .category {
  padding-left: 10px;
  text-transform: uppercase;
}
.list-page .read-more {
  display: inline-flex;
  padding: 10px 40px;
  background-color: #6FA8DC;
  color: #fff;
  margin-bottom: 20px;
}

.list-page .read-more:hover {
  padding: 10px 40px;
  background-color: #6FA8DC93;
  color: #fff;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  border: 1px solid #565559;
  text-align: left;
  padding: 10px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

.nav-list ul{
  list-style: none;
  color: #0792c9;
  display: flex;
  text-align: center;
  padding: 10px 20px;
  background-color: #c4c4c42d;
  font-size: 12px;
}
.nav-list ul li{
  padding: 10px 20px;
}
.nav-list ul li :hover{
  color: #00b7ff;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #565559;
  padding: 50px 0 30px 0;
  font-size: 14px;
}

footer .footer-title {
  color: #6FA8DC;
  font-weight: bold;
  text-transform: uppercase;
}

#footer ul li {
  list-style: none;
  margin-left: 0px;
  padding-left: 0px;
}

#footer ul {
  list-style: none;
  margin-left: 0px;
  padding-left: 0px;
}

#footer ul li .social-links i {
  color: #fff;
  font-size: 26px;
  padding-right: 15px;
}

#footer ul li .social-links i:hover {
  color: #6FA8DC;
}

.limsabc {
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}

#footer ul li img {
  margin-top: 15px;
  padding: 0px;
}

#footer ul li p {
  color: #fff;
  margin-top: 10px;
}

.solutions,
.blog {
  border-right: 1px solid #707070;
}

.solutions .footer-links a {
  font-size: 18px;
  color: #fff;
}

.solutions .footer-links a:hover {
  font-size: 18px;
  color: #6FA8DC;
}

.blog ul li a {
  border-bottom: 1px #fff solid;
  color: #fff;
  font-size: 18px;
}

.blog ul li a:hover {
  border-bottom: 1px #6FA8DC solid;
  color: #6FA8DC;
  font-size: 18px;
}

.contact,
.contact a {
  color: #fff;
  font-size: 18px;
}

.contact ul li,
.contact ul li a {
  margin-top: 15px;
}

.contact ul li .footer-icon {
  padding: 0px;
  margin: 0px !important;
}

.contact a {
  padding-left: 8px;
}
