/*!
Theme Name: trific
Theme URI: http://oxygene.co.ke/
Author: Alfred Maina
Author URI: http://oxygene.co.ke
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: trific
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

trific is based on Oxygene https://oxygene.co.ke.me/, (C) 2012-2020 Automattic, Inc.
Oxygene is distributed under the terms of the GNU GPL v2 or later.

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments
 
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: flex;
  }
}
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
  color: rgba(0, 0, 0, 0.6);
}

.width-75 {
  width: 75%;
  margin: auto;
}

.width-80 {
  width: 80%;
  margin: auto;
}

.width-90 {
  width: 90%;
  margin: auto;
}

body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #fff;
}

body::-webkit-scrollbar-thumb {
  background-color: #1277ba;
  border-radius: 0px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  color: #000;
}

h2 {
  font-size: 2em;
}
h2.title {
  color: #1277ba;
  font-weight: 400;
}
h2 span {
  color: #1277ba;
  font-style: italic;
}

h4.sub-title {
  font-size: 1em;
  color: #1277ba;
  font-weight: 400;
  margin-bottom: 10px;
  font-style: italic;
}

h3 {
  font-size: 1.8em;
  color: #000;
}
h3 span {
  color: #1277ba;
  font-style: italic;
  font-weight: 400;
}
h3.title {
  font-weight: 400;
}

.primary-color {
  color: #1277ba;
}

.title-wrapper {
  width: 60%;
  max-width: 950px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #1277ba;
  z-index: 9999;
  transition: width 0.2s ease;
  border-radius: 5px;
}

.site-header {
  position: absolute;
  width: 80%;
  margin: auto;
  left: 10%;
  top: 0px;
  z-index: 99;
}
.site-header .site-branding img {
  max-width: 200px;
}
.site-header .main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.site-header.single-menu {
  position: relative;
  left: auto;
  top: 0px;
}
.site-header.single-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
  color: #000;
}
.site-header.single-menu #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu {
  background: #fff;
}
.site-header .top-header {
  padding: 7px 0px;
  border-bottom: 1px solid rgba(238, 239, 240, 0.3);
  transition: all 0.4s ease-in-out;
}
.site-header .top-header .top-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.site-header .top-header ul {
  list-style: none;
  display: flex;
  margin: 0px;
  padding-left: 0px;
  color: #fff;
}
.site-header .top-header ul li {
  padding: 5px 10px;
  font-size: 14px;
}
.site-header .top-header ul li a {
  color: #fff;
  font-size: 14px;
}
.site-header .top-header ul li a:hover {
  color: #f2f7f7;
}
.site-header .top-header .top-left ul li:first-child {
  padding-left: 0px;
}
.site-header .top-header .social {
  padding-top: 0px;
}
.site-header .top-header .social li {
  margin: 0px 10px;
  width: auto;
  height: auto;
  background: transparent;
  display: unset;
  align-items: unset;
  justify-content: unset;
}
.site-header .top-header .social li a {
  padding: 0px;
}
.site-header.scrolled {
  position: fixed;
  margin-top: 0px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.site-header.scrolled .top-header {
  display: none;
}
.site-header.scrolled .site-branding {
  display: none;
}
.site-header.scrolled .main-menu {
  justify-content: center;
  padding: 5px 0;
}
.site-header.scrolled #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
  text-shadow: 1px 1px 1px #9b9b9b;
  font-size: 13px;
  color: #fff;
}
.site-header.scrolled #mega-menu-item-697 {
  display: none !important;
}
.site-header.hidden {
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
}
.site-header.visible {
  transform: translateY(0);
  transition: transform 0.4s ease-in-out;
}
.site-header #mega-menu-item-697 {
  border: 1px solid #1277ba !important;
  background: #1277ba !important;
  margin-left: 20px !important;
  transition-duration: 300ms !important;
  border-top-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}
.site-header #mega-menu-item-697 a {
  transition-duration: 300ms !important;
  color: #fff !important;
}
.site-header #mega-menu-item-697:hover {
  background: #f2f7f7 !important;
}
.site-header #mega-menu-item-697:hover a {
  color: #1277ba !important;
}

.mega-sub-menu {
  padding: 10px 15px 10px 15px !important;
  border-bottom: 10px solid #1277ba !important;
}
.mega-sub-menu .mega-menu-column ul.mega-sub-menu li.mega-menu-item {
  position: relative !important;
  border-bottom: 1px solid #fff !important;
}
.mega-sub-menu .mega-menu-column ul.mega-sub-menu li.mega-menu-item:last-child {
  border-bottom: none !important;
}
.mega-sub-menu #mega-menu-left a {
  color: #fff;
}

.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #1277ba;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
}
.back-top i {
  color: #ffffff;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.back-top.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.back-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  opacity: 0.8;
}
.back-top:hover i {
  transform: translateY(-2px);
}
.back-top:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}
.back-top.pulse {
  animation: pulseAnimation 0.6s ease-out;
}
.back-top.bounce {
  animation: bounceAnimation 0.4s ease-out;
}

@keyframes pulseAnimation {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounceAnimation {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(0.9);
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .back-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
  .back-top i {
    font-size: 16px;
  }
}
.btn {
  position: relative;
  padding: 7px 40px;
  border-radius: 0px;
  font-size: 14px;
  color: #1277ba;
  border: 1px solid #1277ba;
  background: transparent;
  transition: all 0.3s ease;
}
.btn span {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.2s;
}
.btn::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: rgb(28, 31, 30);
  transition: 0.3s ease-out;
}
.btn:hover {
  color: #fff;
}
.btn:hover::before {
  width: 100%;
}
.btn:hover span {
  color: rgb(255, 255, 255);
  transition: 0.2s 0.1s;
}
.btn:hover i {
  transform: translateX(10px);
}

.card, img, .img-wrapper {
  transition: all 0.3s ease;
}

.card {
  padding: 10px 10px 20px 10px;
  height: 100%;
}
.card .img-wrapper {
  position: relative;
}
.card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .card-body {
  padding: 10px;
}
.card .card-body .title {
  font-size: 1em;
  margin-bottom: 10px;
  margin: 10px 0px 14px 0px;
}
.card .card-body p {
  font-size: 13px;
}
.card .card-body .btn {
  margin-top: 10px;
}
.card .card-body .btn:hover {
  background: rgb(13.5, 89.25, 139.5);
}
.card:hover .img-wrapper img {
  opacity: 0.8;
}

.social {
  display: flex;
  margin: 0px;
  padding-left: 0px;
  padding-top: 20px;
}
.social li {
  margin: 0px 5px;
  width: 35px;
  height: 35px;
  background: #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 300ms;
}
.social li:first-child {
  margin-left: 0px;
}
.social li a {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  padding: 20px;
}
.social li:hover {
  transform: translateY(0px);
  background: #1277ba;
}

.page-banner {
  position: relative;
  height: 45vh;
  overflow: hidden;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.page-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-banner .banner-content {
  position: absolute;
  text-align: left;
  z-index: 20;
  width: 100%;
  max-width: 750px;
  bottom: 30%;
  left: 10%;
  transform: translate(0%, 50%);
  color: #fff;
}
.page-banner .banner-content .page-heading {
  font-size: 1.2em;
  padding: 10px 0px;
  margin-bottom: 10px;
  font-weight: 300;
  color: #fff;
  font-style: italic;
}
.page-banner .banner-content h3 {
  font-size: 2em;
  color: #fff;
  font-weight: 400;
}
.page-banner .banner-content p {
  font-size: 18px;
}
.page-banner:before {
  content: "";
  position: absolute;
  background-image: linear-gradient(to top right, rgba(1, 10, 1, 0.5), rgba(1, 10, 1, 0.5) 70%);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.page-banner.single-banner {
  height: 45vh;
}
.page-banner.single-banner .banner-content {
  top: 70%;
  z-index: 20;
  width: 100%;
  max-width: 1200px;
  color: #fff;
}
.page-banner.single-banner .banner-content .page-heading {
  font-size: 2em;
  padding: 20px 0px;
}
.page-banner.single-banner .banner-content h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
}
.page-banner.single-banner .banner-content p {
  font-size: 18px;
}

.landing-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 87vh;
  min-height: 600px;
}
.landing-section .owl-stage-outer {
  overflow: hidden; /* Prevent zoom overflow */
}
.landing-section .item {
  height: 87vh;
  min-height: 600px;
  position: relative;
  overflow: hidden; /* Prevent image zoom from overflowing */
}
.landing-section .item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20;
}
.landing-section .temp-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3; /* Higher z-index to prevent overlap issues */
  transition: opacity 1s ease-in-out;
}
.landing-section .temp-img.loaded {
  animation: zoom-in-scale 20s ease-in-out infinite;
}
.landing-section .temp-img.image-only {
  opacity: 1 !important;
  z-index: 5;
  animation: zoom-in-scale 25s ease-in-out infinite;
}
.landing-section .landing-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 4; /* Lower z-index than images */
  min-height: 600px;
}
.landing-section .page-video {
  min-height: 80vh;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.landing-section .page-video:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.landing-section .landing-banner-content {
  position: absolute;
  width: 60%;
  left: 10%;
  bottom: 70px;
  z-index: 50;
  width: 50%;
  max-width: 650px;
}
.landing-section .landing-banner-content .card {
  color: #fff;
  background: transparent;
  z-index: 50;
  border: none;
}
.landing-section .landing-banner-content .card .landing-title {
  font-size: 3em;
  color: #fff;
  position: relative;
  margin-bottom: 20px;
  text-shadow: 2px 3px 14px #000;
}
.landing-section .landing-banner-content .card .tag-line {
  color: #fff;
  font-size: 1.8em;
  padding: 3px 0px 20px 0px;
}
.landing-section .landing-banner-content .card .ctas {
  display: flex;
}
.landing-section .landing-banner-content .card .ctas .btn {
  margin: 10px 20px 10px 0px;
}
.landing-section .landing-banner-content .card .ctas .btn:first-child {
  background: #fff;
  color: #000;
}
.landing-section .landing-banner-content .card .ctas .btn:nth-child(2) {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.landing-section .custom-dots {
  position: absolute;
  right: 10%;
  bottom: 70px;
  transform: translateY(-50%);
  display: flex;
  gap: 15px;
  z-index: 30;
}
.landing-section .custom-dots .custom-dot {
  width: 80px;
  height: 60px;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.landing-section .custom-dots .custom-dot:hover {
  opacity: 0.9;
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.8);
}
.landing-section .custom-dots .custom-dot.active {
  opacity: 1;
  border-color: #fff;
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.landing-section .custom-dots .custom-dot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.landing-section .custom-dots .custom-dot:hover img {
  transform: scale(1.1);
}

@keyframes zoom-in-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .landing-section .custom-dots {
    right: 15px;
    gap: 10px;
  }
  .landing-section .custom-dots .custom-dot {
    width: 45px;
    height: 30px;
  }
  .landing-section .landing-banner-content {
    width: 90%;
  }
  .landing-section .landing-banner-content .card {
    width: 95%;
  }
  .landing-section .landing-banner-content .card .landing-title {
    font-size: 2em;
  }
  .landing-section .landing-banner-content .card .ctas .btn {
    max-width: 280px;
    margin: 8px 5px;
  }
}
@media (max-width: 480px) {
  .landing-section .custom-dots {
    right: 10px;
    gap: 8px;
  }
  .landing-section .custom-dots .custom-dot {
    width: 35px;
    height: 25px;
  }
}
.trific-innovation {
  padding: 70px 0px;
  border-bottom: 1px solid #1277ba;
}

.welcome-section {
  padding: 70px 0px;
}
.welcome-section h2 {
  color: #1277ba;
  font-weight: 400;
}
.welcome-section .marquee-row {
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
}
.welcome-section .marquee-row .marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
}
.welcome-section .marquee-row .card {
  position: relative;
  width: 600px;
  height: 400px;
  margin: 0 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #e6e6e6;
  color: #fff;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.welcome-section .marquee-row .card .img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.welcome-section .marquee-row .card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.welcome-section .marquee-row .card .img-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.4s ease;
}
.welcome-section .marquee-row .card .card-body {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 2;
}
.welcome-section .marquee-row .card .card-body .card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s ease;
}
.welcome-section .marquee-row .card .card-body .card-content .tag {
  color: #fff;
  font-size: 12px;
  opacity: 0.5;
  font-style: italic;
  margin-bottom: 5px;
  transform: translateY(80px);
}
.welcome-section .marquee-row .card .card-body .card-content .title {
  color: #fff;
  opacity: 0.9;
  transition: transform 0.4s ease;
  margin-bottom: 0px;
  transform: translateY(80px);
}
.welcome-section .marquee-row .card .card-body .card-content .card-excerpt {
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  color: #fff;
  text-align: left;
}
.welcome-section .marquee-row .card .card-body .card-content .card-excerpt p {
  margin-bottom: 10px;
}
.welcome-section .marquee-row .card .card-body .card-content .btn {
  color: #fff;
  opacity: 0;
  border: 1px solid #fff;
  transform: translateY(20px);
}
.welcome-section .marquee-row .card:hover {
  transform: scale(1.02);
}
.welcome-section .marquee-row .card:hover .img-wrapper .overlay {
  background: rgba(0, 0, 0, 0.8);
}
.welcome-section .marquee-row .card:hover .card-body .card-content .tag {
  transform: translateY(10px);
  opacity: 0.7;
}
.welcome-section .marquee-row .card:hover .card-body .card-content .title {
  transform: translateY(10px);
  opacity: 1;
}
.welcome-section .marquee-row .card:hover .card-body .card-content .card-excerpt {
  opacity: 1;
  transform: translateY(15px);
}
.welcome-section .marquee-row .card:hover .card-body .card-content .btn {
  opacity: 1;
  transform: translateY(20px);
}
.welcome-section .marquee-row.left-scroll .marquee-track {
  animation: scroll-left 70s linear infinite;
}
.welcome-section .marquee-row.right-scroll .marquee-track {
  animation: scroll-right 60s linear infinite;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.welcome-section .marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .marquee-track .card {
    flex: 0 0 100%;
  }
}
.business-sector {
  position: relative;
  padding-bottom: 70px;
}
.business-sector .width-90 {
  margin-left: auto;
  margin-right: 0px;
}
.business-sector .directions {
  position: absolute;
  right: 10%;
  top: 20px;
  z-index: 10;
}
.business-sector .carousel-nav {
  display: flex;
  gap: 10px;
}
.business-sector .carousel-nav button {
  background: none;
  border: 1px solid #ccc;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.2s ease;
}
.business-sector .carousel-nav button:hover {
  background: #eee;
}
.business-sector .item {
  height: 100%;
}
.business-sector .card {
  padding: 10px;
  height: 100%;
}
.business-sector .card .img-wrapper {
  height: 30vh;
  position: relative;
}
.business-sector .card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.business-sector .card .card-body {
  padding: 10px;
}
.business-sector .card .card-body .tag {
  font-size: 12px;
  opacity: 0.5;
  font-style: italic;
  margin-bottom: 5px;
}
.business-sector .card .card-body .title {
  font-size: 1.2em;
  color: #1277ba;
  margin-bottom: 10px;
}
.business-sector .card .card-body .btn {
  margin-top: 10px;
}
.business-sector .card .card-body .btn:hover {
  background: rgb(13.5, 89.25, 139.5);
}

.our-work {
  padding: 70px 0px;
  background: #1277ba;
  color: #fff;
}
.our-work .title-wrapper {
  width: 90%;
}
.our-work .title-wrapper .title {
  color: #fff;
  font-weight: 400;
}
.our-work .title-wrapper .sub-title {
  color: #fff;
}
.our-work .stats .card {
  text-align: center;
  height: 100%;
  padding: 30px 20px;
  transition-duration: 0.3s;
}
.our-work .stats .card h2 {
  font-weight: 800;
}
.our-work .stats .card p {
  color: #99958F;
  margin-bottom: 0px;
  font-size: 0.9em;
}
.our-work .stats .card:hover {
  background: #EEEFF0;
  color: #fff;
}
.our-work .ctas {
  display: flex;
  margin-top: 50px;
}
.our-work .ctas .btn {
  margin: 10px 20px 10px 0px;
}
.our-work .ctas .btn:first-child {
  background: #fff;
  color: #000;
}
.our-work .ctas .btn:nth-child(2) {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.our-work .why-us {
  padding-top: 50px;
}
.our-work .why-us .card {
  height: 100%;
  background: transparent;
  padding: 20px;
  border-radius: 0px;
  transition-duration: 300ms;
}
.our-work .why-us .card h3 {
  color: #fff;
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.our-work .why-us .card p {
  color: #fff;
  margin-bottom: 0px;
}
.our-work .why-us .card .icon-wrapper {
  width: 40px;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.our-work .why-us .card .icon-wrapper img {
  width: 100%;
  height: auto;
}
.our-work .why-us .card:hover {
  background: rgba(242, 247, 247, 0.1);
}

.partners {
  padding: 70px 0px;
}
.partners .title-wrapper {
  padding-bottom: 40px;
}
.partners .title-wrapper .title {
  color: #000;
  font-size: 1.8em;
}
.partners .card {
  height: 100%;
  border-radius: 0px;
  padding-bottom: 50px;
  transition: background-color 0.2s ease-in, transform 0.1s ease-in;
}
.partners .card .img-wrapper {
  max-width: 250px;
  margin: auto;
}
.partners .card .card-body .card-title {
  font-size: 1em;
  color: #1277ba;
  font-weight: 600;
}
.partners .card .card-body p {
  font-size: 12px;
}
.partners .card .card-body .btn {
  position: absolute;
  bottom: 20px;
}
.partners .card:hover {
  background: rgba(242, 247, 247, 0.5);
}

.home-news {
  position: relative;
  padding: 70px 0px;
  border-top: 1px solid rgba(18, 119, 186, 0.4);
}
.home-news .title-wrapper {
  padding-bottom: 20px;
}
.home-news .title-wrapper .title {
  color: #000;
  font-size: 1.8em;
}
.home-news .card {
  padding: 10px;
  height: 100%;
}
.home-news .card .img-wrapper {
  height: 30vh;
  position: relative;
}
.home-news .card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-news .card .card-body {
  padding: 10px;
}
.home-news .card .card-body .meta-data {
  display: flex;
  margin: 15px 0px 15px 0px;
}
.home-news .card .card-body .meta-data .tag {
  border: 1px solid #99958F;
  padding: 3px 10px;
  font-size: 12px;
  opacity: 0.5;
  font-style: italic;
  margin-bottom: 5px;
  margin-right: 20px;
}
.home-news .card .card-body .meta-data .tag a {
  color: #000;
}
.home-news .card .card-body .meta-data .date {
  font-size: 14px;
}
.home-news .card .card-body .title {
  font-size: 1em;
  margin-bottom: 10px;
  margin: 0px 0px 20px 0px;
}
.home-news .card .card-body .btn {
  margin-top: 10px;
}
.home-news .card .card-body .btn:hover {
  background: rgb(13.5, 89.25, 139.5);
}
.home-news .card:hover {
  background: rgba(242, 247, 247, 0.5);
  transform: translateY(-5px);
}
.home-news .card:hover img {
  opacity: 0.8;
}

.site-footer {
  padding: 70px 0px 20px 0px;
  background: #1277ba;
  color: #fff;
}
.site-footer .site-branding img {
  max-width: 200px;
}
.site-footer .site-branding p {
  font-size: 14px;
  font-weight: 200;
  padding-top: 15px;
  max-width: 450px;
}
.site-footer .site-info h2 {
  color: #fff;
  margin-bottom: 30px;
}
.site-footer .site-info h2 span {
  color: #fff;
}
.site-footer .site-info .cta {
  display: flex;
}
.site-footer .site-info .cta .btn {
  border: 1px solid #fff;
  color: #fff;
  margin-right: 20px;
}
.site-footer .site-info .cta .btn:nth-child(odd) {
  background: #fff;
  color: #1277ba;
}
.site-footer .follow {
  display: flex;
  align-items: center;
}
.site-footer .follow h3 {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
.site-footer .follow .social li {
  background: transparent;
  padding: 0px;
  margin-right: 20px;
  width: auto;
  height: auto;
}
.site-footer .follow .social li a {
  padding: 0px;
  font-size: 16px;
  transition-duration: 300ms;
}
.site-footer .follow .social li:hover a {
  transform: translateY(-5px) scale(1.1);
}
.site-footer .footer-links {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 50px;
  margin-top: 50px;
}
.site-footer .footer-links .title {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
.site-footer .footer-links ul {
  list-style: none;
  padding-left: 0px;
  margin-left: 0;
  width: 100%;
}
.site-footer .footer-links ul li {
  padding: 5px 0px;
  transition-duration: 300ms;
}
.site-footer .footer-links ul li:hover {
  opacity: 0.8;
  transform: translateX(3px);
}
.site-footer .footer-links ul a {
  font-size: 14px;
  color: #fff;
  opacity: 0.7;
}
.site-footer .copyright {
  width: 80%;
  margin: auto;
  color: #fff;
  opacity: 0.6;
  text-align: center;
  border-radius: 10px;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.site-footer .copyright p {
  margin-bottom: 0px;
  margin-bottom: 0px;
}

.news {
  padding: 30px 0px;
}
.news .card {
  padding: 10px;
  height: 100%;
}
.news .card .img-wrapper {
  height: 30vh;
  position: relative;
}
.news .card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news .card .card-body {
  padding: 10px;
}
.news .card .card-body .meta-data {
  display: flex;
  margin: 15px 0px 15px 0px;
}
.news .card .card-body .meta-data .tag {
  border: 1px solid #99958F;
  padding: 3px 10px;
  font-size: 12px;
  opacity: 0.5;
  font-style: italic;
  margin-bottom: 5px;
  margin-right: 20px;
  transition-duration: 300ms;
}
.news .card .card-body .meta-data .tag a {
  color: #000;
  text-decoration: none;
}
.news .card .card-body .meta-data .tag:hover {
  opacity: 1;
}
.news .card .card-body .meta-data .date {
  font-size: 14px;
}
.news .card .card-body .title {
  font-size: 1em;
  margin-bottom: 10px;
  margin: 0px 0px 20px 0px;
}
.news .card .card-body .btn {
  margin-top: 10px;
}
.news .card .card-body .btn:hover {
  background: rgb(13.5, 89.25, 139.5);
}
.news .card:hover {
  background: rgba(242, 247, 247, 0.5);
  transform: translateY(-5px);
}
.news .card:hover img {
  opacity: 0.8;
}

.load-more {
  position: relative;
  padding: 70px 0px 30px 0px;
  text-align: center;
}
.load-more #load-more:hover {
  background-color: transparent;
}

.contact {
  padding: 50px 0px;
}
.contact .info {
  list-style: none;
  display: flex;
  margin: 0px 0px 40px 0px;
  padding-left: 0px;
  width: 100%;
}
.contact .info li {
  display: flex;
  align-items: center;
  margin-right: 50px;
}
.contact .info li .icon-wrap {
  margin: 0px 10px;
  width: 55px;
  height: 55px;
  background: #1277ba;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 300ms;
  font-size: 20px;
}
.contact .info li .details {
  margin-left: 10px;
}
.contact .info li .details p {
  margin-bottom: 0px;
  font-size: 16px;
  opacity: 0.6;
}
.contact .info li .details a {
  color: #1277ba;
  font-size: 20px;
}
.contact .info li .details a:hover {
  color: rgb(13.5, 89.25, 139.5);
}
.contact .form-wrapper {
  position: relative;
  z-index: 200;
  background: #fff;
  padding: 4% 7%;
  margin-left: 50px;
  border-radius: 15px;
  margin-top: -200px;
  box-shadow: 2px 22px 28px rgba(0, 0, 0, 0.1);
}
.contact .form-wrapper form input, .contact .form-wrapper form textarea {
  border-radius: 10px !important;
  background: #F8FEFF !important;
}
.contact .form-wrapper form button.wpforms-submit {
  padding: 7px 40px;
  border-radius: 0px;
  font-size: 14px;
  border: 1px solid #1277ba !important;
}
.contact .form-wrapper form button.wpforms-submit:hover {
  background: transparent !important;
  color: #1277ba !important;
  border: 1px solid #1277ba !important;
}

.values {
  padding: 70px 0px;
}
.values .core-values {
  padding-top: 50px;
}
.values .core-values .col-md-3:nth-child(1) .card .icon-wrapper {
  background: #E68075;
}
.values .core-values .col-md-3:nth-child(2) .card .icon-wrapper {
  background: #DABE71;
}
.values .core-values .col-md-3:nth-child(3) .card .icon-wrapper {
  background: #DDE2DA;
}
.values .core-values .col-md-3:nth-child(4) .card .icon-wrapper {
  background: #004705;
}
.values .core-values .col-md-3:nth-child(even) .card {
  background: #DDE2DA;
}
.values .core-values .col-md-3:nth-child(even) .card:hover {
  background: #fff;
}
.values .core-values .card {
  height: 100%;
  background: #f2f7f7;
  padding: 20px;
  border-radius: 0px;
  transition-duration: 300ms;
}
.values .core-values .card h3 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.values .core-values .card p {
  margin-bottom: 0px;
  font-size: 13px;
}
.values .core-values .card .icon-wrapper {
  width: 40px;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #1277ba;
}
.values .core-values .card .icon-wrapper img {
  width: 100%;
  height: auto;
}
.values .core-values .card:hover {
  background: #fff;
}

.why-trific {
  background: #1277ba;
  padding: 70px 0px;
  color: #fff;
}
.why-trific .title-wrapper .title {
  color: #fff;
  padding-bottom: 20px;
}
.why-trific .title-wrapper p {
  color: #fff;
  padding-bottom: 20px;
  font-weight: 300;
}
.why-trific .card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0px;
}
.why-trific .card .title {
  color: #fff;
}
.why-trific .card:hover {
  background: rgba(242, 247, 247, 0.1);
}

.team {
  padding: 70px 0px;
  background: #f2f7f7;
}
.team .title-wrapper {
  max-width: 100%;
  width: 100%;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team .card {
  background: transparent;
  cursor: pointer;
  border-radius: 0px;
  border: none;
}
.team .card .card-body .title {
  margin: 10px 0px 5px 0px;
}
.team .card .card-body .tag {
  font-size: 14px;
}
.team .card:hover {
  background: #fff;
}

.team-modal.modal {
  background: rgba(0, 0, 0, 0.8);
}
.team-modal.modal .modal-lg {
  max-width: 1000px;
}
.team-modal.modal .modal-body {
  padding: 0px;
}
.team-modal.modal .modal-body .img-wrapper {
  width: 100%;
  height: 100%;
}
.team-modal.modal .modal-body .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-modal.modal .modal-body .card {
  border: none;
  padding: 10%;
  font-size: 12px;
  height: 550px;
  overflow: auto;
}
.team-modal.modal .modal-body .card::-webkit-scrollbar {
  width: 0.6em;
}
.team-modal.modal .modal-body .card::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #ced4da;
}
.team-modal.modal .modal-body .card::-webkit-scrollbar-thumb {
  background-color: #1277ba;
}
.team-modal.modal .modal-body .card p {
  font-size: 12px;
}
.team-modal.modal .modal-body .card .designation {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}
.team-modal.modal .modal-body .card .designation:after {
  position: absolute;
  content: "";
  width: 60%;
  height: 1px;
  border-radius: 50%;
  left: 0px;
  background: rgba(18, 119, 186, 0.8);
  bottom: 0px;
}
.team-modal.modal .modal-body .card .get-contacts {
  list-style: none;
  display: flex;
  margin: 0px 0px 20px 0px;
  padding-left: 0px;
  width: 100%;
}
.team-modal.modal .modal-body .card .get-contacts li {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.team-modal.modal .modal-body .card .get-contacts li .icon-wrap {
  margin: 0px 0px;
  width: 30px;
  height: 30px;
  background: #1277ba;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 300ms;
  font-size: 14px;
}
.team-modal.modal .modal-body .card .get-contacts li .details {
  margin-left: 10px;
}
.team-modal.modal .modal-body .card .get-contacts li .details p {
  margin-bottom: 0px;
  font-size: 14px;
  opacity: 0.6;
}
.team-modal.modal .modal-body .card .get-contacts li .details a {
  color: #1277ba;
  font-size: 14px;
}
.team-modal.modal .modal-body .card .get-contacts li .details a:hover {
  color: rgb(13.5, 89.25, 139.5);
}
.team-modal.modal .close {
  cursor: pointer;
  position: absolute;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 22;
  right: -20px;
  top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  box-shadow: 5px 5px 7px 7px rgba(0, 0, 0, 0.05);
  transition-duration: 300ms;
}
.team-modal.modal .close:hover {
  box-shadow: 5px 5px 7px 7px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

.team-members {
  position: relative;
  padding: 50px 0px 30px 0px;
}
.team-members .directions {
  position: absolute;
  right: 10%;
  top: 40px;
  z-index: 10;
}
.team-members .carousel-nav {
  display: flex;
  gap: 10px;
}
.team-members .carousel-nav button {
  background: none;
  border: 1px solid #ccc;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.2s ease;
}
.team-members .carousel-nav button:hover {
  background: #eee;
}
.team-members .title-wrapper {
  max-width: 100%;
  width: 100%;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-members .card {
  padding: 0px;
  cursor: pointer;
}
.team-members .card .card-body {
  position: absolute;
  width: 86%;
  left: 6%;
  bottom: 20px;
  background: #1277ba;
  opacity: 0;
  transition-duration: 300ms;
  transform: translateY(20px);
}
.team-members .card .card-body .card-content {
  padding: 0px 7px;
}
.team-members .card .card-body .card-content .title {
  color: #fff;
  margin-bottom: 7px;
  font-weight: 600;
}
.team-members .card .card-body .card-content .tag {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding-bottom: 5px;
}
.team-members .card:hover .card-body {
  opacity: 1;
  transform: translateY(0px);
}

.about-rep .repeater:nth-child(2) {
  background: #EEEFF0;
}

.repeater {
  position: relative;
  padding: 50px 0px;
  border-top: 1px solid rgba(18, 119, 186, 0.4);
}
.repeater.stripes:nth-child(odd) {
  background: rgba(238, 239, 240, 0.5);
}
.repeater .img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.repeater .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.repeater .content {
  padding: 40px 0px;
  width: 92%;
}
.repeater .content .title {
  padding-bottom: 10px;
}
.repeater .content ul {
  list-style: none;
  margin-left: 0px;
}
.repeater .content ul.two-column {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 50;
       column-gap: 50;
}
.repeater .content ul li {
  position: relative;
  padding: 7px 0px;
}
.repeater .content ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -30px;
  top: 5px;
  content: "\f058";
  color: #004705;
  z-index: 10;
}
.repeater .content ol {
  list-style: none;
  counter-reset: my-counter;
  margin-left: 0;
  padding-left: 10px;
}
.repeater .content ol li {
  position: relative;
  padding: 7px 0 7px 30px;
  counter-increment: my-counter;
}
.repeater .content ol li::before {
  content: counter(my-counter) ".";
  position: absolute;
  left: 0;
  top: 5px;
  font-weight: bold;
  color: #004705;
}
.repeater .content.reversed {
  margin-right: auto;
  margin-left: 0px;
}
.repeater .content .cta {
  display: flex;
}
.repeater .content .cta .btn {
  margin-right: 20px;
}
.repeater .content .cta .btn:nth-child(even) {
  background: #1277ba;
  color: #fff;
}
.repeater.inversed .content {
  margin-right: auto;
}
.repeater.inversed .content.reversed {
  margin-right: 0px;
  margin-left: auto;
}

.sub-menu-list {
  position: relative;
  list-style: none;
  display: flex;
  margin-left: 0px;
  padding-left: 0px;
  padding: 50px 0px 20px 0px;
}
.sub-menu-list li {
  position: relative;
  padding-right: 40px;
}
.sub-menu-list li:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background: rgba(18, 119, 186, 0.9);
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.sub-menu-list li:last-child:after {
  width: 0px;
}
.sub-menu-list li a {
  color: #000;
  text-decoration: none;
}
.sub-menu-list li a:hover {
  color: #1277ba;
}

.our-biz-rep .content ul {
  -moz-column-count: 1;
       column-count: 1;
}
.our-biz-rep .content .cta .btn:nth-child(odd) {
  background: #1277ba;
  color: #fff;
}

.testimonials {
  position: relative;
  padding: 70px 0px 20px 0px;
  background: #EEEFF0;
}
.testimonials .card {
  background: transparent;
  border: none;
  height: 100%;
  padding: 20px 20px 20px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.testimonials .card .title {
  font-size: 25px;
  font-weight: 600;
  padding-top: 20px;
}
.testimonials .card p {
  margin-bottom: 10px;
}
.testimonials .card .designation {
  font-weight: 400;
}
.testimonials .card .icon-wrapper {
  margin: auto;
  background: #f2f7f7;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 0px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: auto;
  overflow: hidden;
}
.testimonials .card .icon-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .card:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -50px;
  top: -20px;
  content: "\f10d";
  font-size: 3.5em;
  color: #1277ba;
}

.benefits {
  padding: 50px 0px;
  border-top: 1px solid rgba(18, 119, 186, 0.4);
}
.benefits .title-wrapper {
  margin-bottom: 20px;
}
.benefits .card {
  border-radius: 0px;
  padding: 30px 20px 60px 20px;
}
.benefits .card .head-box {
  background: #1277ba;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  margin-bottom: 40px;
}
.benefits .card .head-box span {
  background: #EEEFF0;
  color: #1277ba;
  padding: 2px 5px;
  border-radius: 3px;
}
.benefits .card .title {
  font-size: 20px;
}
.benefits .card .card-text {
  padding: 20px 0px;
}
.benefits .card .btn {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  bottom: 30px;
  left: 20px;
}

.certification {
  padding: 70px 0px;
  background: #1277ba;
  color: #fff;
}
.certification .content {
  padding: 40px 0px;
}
.certification .content .title {
  padding-bottom: 10px;
  color: #fff;
}
.certification .content ul {
  list-style: none;
  margin-left: 0px;
}
.certification .content ul li {
  position: relative;
  padding: 7px 0px;
}
.certification .content ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -30px;
  top: 5px;
  content: "\f058";
  color: #f2f7f7;
  z-index: 10;
}
.certification .content .btn {
  color: #fff;
  border: 1px solid #fff;
}

.infrastructure {
  padding: 70px 0px;
}
.infrastructure .items {
  padding-top: 30px;
}
.infrastructure .items .co:nth-child(1) .card .icon-wrapper {
  background: #E68075;
}
.infrastructure .items .co:nth-child(2) .card .icon-wrapper {
  background: #DABE71;
}
.infrastructure .items .co:nth-child(3) .card .icon-wrapper {
  background: #DDE2DA;
}
.infrastructure .items .co:nth-child(4) .card .icon-wrapper {
  background: #004705;
}
.infrastructure .items .co:nth-child(even) .card {
  background: #DDE2DA;
}
.infrastructure .items .co:nth-child(even) .card:hover {
  background: #fff;
}
.infrastructure .items .card {
  height: 100%;
  background: #f2f7f7;
  padding: 20px;
  border-radius: 0px;
  transition-duration: 300ms;
}
.infrastructure .items .card h3 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.infrastructure .items .card p {
  margin-bottom: 0px;
  font-size: 13px;
}
.infrastructure .items .card .icon-wrapper {
  width: 40px;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #1277ba;
  border-radius: 2px;
}
.infrastructure .items .card .icon-wrapper img {
  width: 100%;
  height: auto;
}
.infrastructure .items .card:hover {
  background: #fff;
}
.infrastructure .items .card:hover .icon-wrapper {
  background: #000;
}

.sez-members {
  padding: 70px 0px;
}
.sez-members .title {
  margin-bottom: 40px;
}
.sez-members .col-6 {
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.sez-members img {
  margin: auto;
}
.sez-members img:hover {
  opacity: 0.7;
}

.tooltip-card {
  cursor: pointer;
  padding: 2px;
}
.tooltip-card .img-wrapper {
  position: relative;
  height: 100px;
  width: 100%;
  cursor: pointer;
}
.tooltip-card .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tooltip-card .img-wrapper .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: red;
  border-radius: 3px;
  padding: 5px 15px;
  transition-duration: 300ms;
}
.tooltip-card .img-wrapper .play-btn i {
  color: #fff;
}
.tooltip-card .card-title {
  font-size: 12px;
  margin-bottom: 0px;
  padding: 3px 0px;
}
.tooltip-card:hover .img-wrapper .play-btn {
  background: #1277ba;
}

.strategic-locations .repeater:nth-child(4) {
  background: #1277ba;
  color: #fff;
}
.strategic-locations .repeater:nth-child(4) .title {
  color: #fff;
}

.copy-mail {
  background: linear-gradient(135deg, #1277ba, #1277ba);
  color: white;
  padding: 50px 0;
}
.copy-mail .sub-title {
  color: #fff;
}
.copy-mail .email-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  max-width: 300px;
}
.copy-mail .email-section .email-text {
  font-size: 25px;
  font-weight: 500;
  flex: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.copy-mail .email-section .copy-button {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  flex-shrink: 0;
}
.copy-mail .email-section .copy-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.copy-mail .email-section .copy-button.copied {
  background: rgba(76, 175, 80, 0.9);
  border-color: #4CAF50;
  color: white;
}
.copy-mail .email-section .copy-button i {
  transition: all 0.3s ease;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #1277ba;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  font-weight: 500;
  z-index: 1000;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.notification i {
  margin-right: 8px;
}
.notification.show {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .notification {
    top: 20px;
    right: 20px;
    left: 20px;
    transform: translateY(-100%);
  }
  .notification.show {
    transform: translateY(0);
  }
}
.filter-section {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
  /* Search Box */
}
.filter-section .category-filter {
  margin-bottom: 1rem;
}
.filter-section .filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-section .filter-tab {
  padding: 0.5rem 1.25rem;
  border: 2px solid #e9ecef;
  background: #fff;
  color: #6c757d;
  border-radius: 0px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.filter-section .filter-tab:hover {
  border-color: #1277ba;
  color: #1277ba;
  transform: translateY(-2px);
}
.filter-section .filter-tab.active {
  background: #1277ba;
  border-color: #1277ba;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.filter-section .search-box {
  margin-bottom: 1rem;
}
.filter-section .search-input-wrapper {
  position: relative;
  max-width: 300px;
  margin-left: auto;
}
.filter-section .search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 3rem;
  border: 2px solid #e9ecef;
  border-radius: 0px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
}
.filter-section .search-input:focus {
  border-color: #1277ba;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.filter-section .search-input::-moz-placeholder {
  color: #adb5bd;
}
.filter-section .search-input::placeholder {
  color: #adb5bd;
}
.filter-section .search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1rem;
  pointer-events: none;
}

.no-results {
  padding: 3rem 1rem;
  text-align: center;
  color: #6c757d;
}
.no-results h3 {
  margin-bottom: 1rem;
  color: #495057;
  font-weight: 600;
}
.no-results p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Post Item Animation */
.post-item {
  transition: all 0.3s ease;
  opacity: 1;
}

.post-item.hiding {
  opacity: 0;
  transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
  .filter-section .row {
    flex-direction: column;
  }
  .filter-section .col-md-4 {
    margin-top: 1rem;
  }
  .search-input-wrapper {
    max-width: 100%;
    margin-left: 0;
  }
  .filter-tabs {
    justify-content: center;
  }
  .filter-tab {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}
@media (max-width: 576px) {
  .filter-section {
    padding: 1rem 0;
  }
  .filter-tabs {
    gap: 0.3rem;
  }
  .filter-tab {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  .search-input {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
    padding-right: 2.5rem;
  }
  .search-icon {
    right: 0.8rem;
    font-size: 0.9rem;
  }
}
/* Loading Animation */
.filter-tab.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Smooth show/hide animation for posts */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.post-item {
  animation: fadeInUp 0.5s ease-out;
}

/* Custom scrollbar for search input (webkit browsers) */
.search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 1rem;
  width: 1rem;
  border-radius: 0%;
  background: #6c757d;
  cursor: pointer;
  position: relative;
  right: 0.5rem;
}

/* Focus states for accessibility */
.filter-tab:focus,
.search-input:focus {
  outline: 2px solid #1277ba;
  outline-offset: 2px;
}

.apply {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
  padding: 20px 0;
}
.apply .scroll-marquee {
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.apply .scroll-marquee .marquee-track {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 0;
  padding: 0;
  will-change: transform;
  transition: transform 0.1s ease-out;
  width: calc(200% + 100px);
}
.apply .scroll-marquee .marquee-track .img-wrapper {
  flex-shrink: 0;
  width: 500px;
  height: 30vh;
  border-radius: 0;
  overflow: hidden;
  padding: 10px;
}
.apply .scroll-marquee .marquee-track .img-wrapper .img-fluid {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.apply .applybox {
  position: absolute;
  background: #fff;
  padding: 50px;
  width: 80%;
  max-width: 1100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.apply .applybox .title {
  font-size: 35px;
  font-weight: 600;
  padding-bottom: 10px;
}
.apply .applybox p {
  margin-bottom: 0px;
}
.apply .applybox .btn {
  background: #1277ba;
  color: #fff;
}

.testimonials-slide {
  position: relative;
  padding: 50px 0px;
}
.testimonials-slide .width-90 {
  margin-left: auto;
  margin-right: 0px;
}
.testimonials-slide .card-body {
  padding: 30px 20px 20px 20px;
}
.testimonials-slide .card-body .card-excerpt {
  border-left: 2px solid #1277ba;
  padding: 5px 20px;
}
.testimonials-slide .card-body .card-excerpt p {
  margin-bottom: 0px;
}
.testimonials-slide .card-body .description {
  padding-top: 20px;
}
.testimonials-slide .card-body .description h3 {
  color: #99958F;
  font-size: 15px;
}
.testimonials-slide .directions {
  position: absolute;
  right: 10%;
  top: 70px;
  z-index: 10;
}
.testimonials-slide .carousel-nav {
  display: flex;
  gap: 10px;
}
.testimonials-slide .carousel-nav button {
  background: none;
  border: 1px solid #ccc;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.2s ease;
}
.testimonials-slide .carousel-nav button:hover {
  background: #eee;
}
.testimonials-slide .img-wrapper {
  position: relative;
  height: 100%;
  min-height: 40vh;
  width: 100%;
  cursor: pointer;
}
.testimonials-slide .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-slide .img-wrapper .play-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #1277ba;
  padding: 7px 20px;
}
.testimonials-slide .img-wrapper .play-btn i {
  color: #fff;
}

.close {
  cursor: pointer;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-modal {
  background: rgba(0, 0, 0, 0.8);
}
.video-modal .modal-lg, .video-modal .modal-xl {
  max-width: 1200px;
}
.video-modal .video-embed iframe {
  width: 100%;
  height: 435px;
}

.application-form {
  padding: 50px 0px;
}
.application-form .img-wrapper {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.application-form .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.application-form .form-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 200;
  background: #fff;
  padding: 4% 7%;
  border-radius: 0px;
  box-shadow: 2px 22px 28px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}
.application-form .form-wrapper form input, .application-form .form-wrapper form textarea {
  border-radius: 10px !important;
  background: #F8FEFF !important;
}
.application-form .form-wrapper form button.wpforms-submit {
  padding: 7px 40px;
  border-radius: 0px;
  font-size: 14px;
  border: 1px solid #1277ba !important;
}
.application-form .form-wrapper form button.wpforms-submit:hover {
  background: transparent !important;
  color: #1277ba !important;
  border: 1px solid #1277ba !important;
}

.members-single {
  padding: 40px 0px;
}
.members-single .member-logo {
  max-width: 320px;
}
.members-single .titles {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.members-single .titles .link {
  padding-left: 40px;
}
.members-single .titles .link a {
  color: #1277ba;
  text-decoration: none;
  font-weight: 600;
}
.members-single .titles .link a i {
  transform: rotate(-25deg);
  font-size: 80%;
  transition-duration: 0.3s;
}
.members-single .titles .link a:hover {
  color: #99958F;
}
.members-single .titles .link a:hover i {
  transform: rotate(0deg) translateX(5px);
}
.members-single .titles .social {
  margin-left: 40px;
  padding-top: 0px;
}
.members-single .titles .social li {
  background: transparent;
}
.members-single .titles .social li a {
  color: #1277ba;
}
.members-single .titles .social li a:hover {
  color: #99958F;
}
.members-single .video-container {
  border-radius: 10px;
}
.members-single .content {
  padding: 30px 0px 10px 0px;
}
.members-single .director {
  text-align: center;
}
.members-single .director .testimony {
  position: relative;
  color: #1277ba;
  font-size: 20px;
  font-style: italic;
  padding: 20px 40px 20px 40px;
  border-left: 7px solid #1277ba;
  border-right: 7px solid #1277ba;
  border-radius: 15px;
}
.members-single .director .testimony p {
  margin-bottom: 0px;
}
.members-single .director .testimony::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 30px;
  top: 5px;
  content: "\f10d";
  color: #004705;
  z-index: 10;
}
.members-single .director .director-details {
  padding: 0px 0px 0px 45px;
}
.members-single .director .director-details .title {
  font-size: 16px;
  font-weight: 600;
}
.members-single .side-bar {
  position: sticky;
  width: 90%;
  margin: auto;
  top: 30px;
}
.members-single .side-bar .other-partners {
  border: 1px solid #eeeff0;
  padding: 30px;
}
.members-single .side-bar .other-partners .title {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #EEEFF0;
}

.subscribe {
  position: relative;
  padding: 30px 30px 30px 30px;
  border-radius: 0px;
  background: black;
  border: 1px solid white;
}
.subscribe h4 {
  color: #fff;
}
.subscribe p {
  color: #fff;
}
.subscribe .subscribe-input {
  color: #fff;
  position: relative;
}
.subscribe .subscribe-input input {
  border-radius: 20px;
  padding: 10px 20px;
  width: 100%;
}
.subscribe .subscribe-input button {
  background: #1277ba;
  position: absolute;
  right: 4px;
  line-height: 1;
  padding: 8px 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 20px;
  color: #fff;
}
.subscribe .subscribe-input button:hover {
  background: #f2f7f7;
}

.all-events {
  padding: 70px 0px;
}
.all-events .card {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
  width: 100%;
  border: none;
  margin: 20px 0px;
}
.all-events .card .img-wrapper .date {
  position: absolute;
  top: 10px;
  right: 0px;
  background: #1277ba;
  color: #fff;
  padding: 5px 10px;
  border-top-left-radius: 1px;
  border-bottom-left-radius: 20px;
  font-size: 14px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.all-events .card .img-wrapper .date i {
  padding-left: 10px;
  padding-right: 6px;
  padding-bottom: 2px;
}
.all-events .card .content {
  width: 90%;
  margin: auto;
}
.all-events .card .content .title {
  font-size: 25px;
  font-weight: 600;
}
.all-events .card .content .title a {
  color: #000;
}
.all-events .card .content .details {
  position: relative;
}
.all-events .card .content .details ul {
  margin-left: 0px;
  padding-left: 0px;
  list-style: none;
  display: flex;
  margin-bottom: 10px;
  padding-top: 3px;
}
.all-events .card .content .details ul li {
  padding-right: 20px;
  font-weight: 500;
  font-style: italic;
}
.all-events .card .content .details ul li i {
  padding-right: 10px;
  color: #1277ba;
}
.all-events .card .content .btn i {
  padding-left: 3px;
  transform: rotate(-45deg);
  transition-duration: 300ms;
}
.all-events .card .content .btn:hover i {
  padding-left: 10px;
  transform: rotate(0deg);
}

.event-info {
  padding: 70px 0px;
  position: relative;
}
.event-info .img-wrapper {
  position: relative;
}
.event-info .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 60vh;
}
.event-info .content {
  padding: 30px 0px 0px 0px;
}
.event-info .content .title {
  font-size: 35px;
  color: #000;
  font-weight: 600;
  font-style: italic;
}
.event-info .content .excerpt {
  position: relative;
  color: #1277ba;
  padding: 10px 20px 10px 20px;
  border-left: 3px solid #1277ba;
  margin: 20px 0px;
}
.event-info .content .excerpt p {
  margin-bottom: 0px;
}
.event-info .ctas {
  display: flex;
}
.event-info .ctas .btn {
  margin: 10px 20px 10px 0px;
}
.event-info .ctas .btn:nth-child(odd) {
  background: #1277ba;
  color: #fff;
  border: 1px solid #1277ba;
}
.event-info .sticky-event-sidebar {
  background: #f2f7f7;
  position: sticky;
  top: 5%;
  bottom: 10%;
}
.event-info .sidebar-info {
  padding: 40px 40px 20px 40px;
}
.event-info .sidebar-info h3 {
  position: relative;
  padding-bottom: 20px;
}
.event-info .sidebar-info h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 7px;
  width: 30%;
  height: 5px;
  border-radius: 20px;
  background: #1277ba;
}
.event-info .sidebar-info ul {
  list-style: none;
  padding-left: 0px;
  margin-left: 0px;
  margin-bottom: 0px;
}
.event-info .sidebar-info ul li {
  padding: 15px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.event-info .sidebar-info ul li:last-child {
  border-bottom: none;
}
.event-info .sidebar-info ul li a {
  color: #99958F;
}
.event-info .sidebar-info ul li i {
  color: #1277ba;
  padding-right: 20px;
}

.event-gallery {
  padding: 50px 0px;
  background: #f2f7f7;
}
.event-gallery .title {
  margin-bottom: 40px;
}
.event-gallery img {
  height: 30vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.event-gallery img:hover {
  opacity: 0.7;
}

.filters {
  padding: 20px 10px 10px 10px;
  background: rgba(0, 0, 0, 0.03);
  margin-bottom: 50px;
}
.filters .search-wrapper label {
  display: block;
  margin-bottom: 0.5rem;
}
.filters .search-wrapper input[type=text] {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 45px;
}
.filters label {
  font-weight: 600;
  font-size: 14px;
}
.filters .custom-select {
  min-width: 350px;
  position: relative;
}
.filters select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  font-size: 1rem;
  padding: 0.4em 6em 0.4em 1em;
  height: 45px;
  background-color: #fff;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  color: #000;
  cursor: pointer;
}
.filters .custom-select::before,
.filters .custom-select::after {
  --size: 0.3rem;
  content: "";
  position: absolute;
  right: 1rem;
  pointer-events: none;
}
.filters .custom-select::before {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-bottom: var(--size) solid black;
  top: 40%;
}
.filters .custom-select::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid black;
  top: 55%;
}

.resources {
  position: relative;
  padding: 70px 0px;
}
.resources .title-wrap {
  padding-bottom: 20px;
  text-align: center;
}
.resources .filters {
  padding-bottom: 30px;
}
.resources .card {
  position: relative;
  height: 100%;
  text-align: center;
  padding: 20px 0px 0px 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.resources .card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0px solid #f2f7f7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.resources .card .icon-wrap i {
  font-size: 30px;
  color: red;
}
.resources .card .card-title {
  margin-bottom: 0px;
}
.resources .card .card-title a {
  font-size: 16px;
  color: #1277ba;
  transition-duration: 300ms;
}
.resources .card .card-title a:hover {
  color: #000;
}
.resources .card .card-footer {
  background: transparent;
  padding: 20px 0px;
}
.resources .card .card-footer .btn i {
  font-size: 14px;
  padding-left: 6px;
  transition-duration: 300ms;
}
.resources .card .card-footer .btn:hover {
  color: #1277ba;
}

/* Multi-Step Navigation */
.step-navigation {
  background: #fff;
  padding: 2rem 0;
  border-bottom: 3px solid #f2f7f7;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.step-navigation .step-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.step-navigation .step-nav-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #EEEFF0;
  z-index: 1;
}
.step-navigation .step-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 150px;
}
.step-navigation .step-nav-item:hover {
  transform: translateY(-2px);
}
.step-navigation .step-nav-item .step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #EEEFF0;
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border: 3px solid #EEEFF0;
}
.step-navigation .step-nav-item.active .step-circle {
  background: #1277ba;
  color: white;
  border-color: #1277ba;
  box-shadow: 0 0 20px rgba(18, 119, 186, 0.3);
}
.step-navigation .step-nav-item.active .step-label {
  color: #1277ba;
}
.step-navigation .step-nav-item.completed .step-circle {
  background: var(--success);
  color: white;
  border-color: var(--success);
}
.step-navigation .step-nav-item.completed .step-circle i {
  font-size: 1rem;
}
.step-navigation .step-nav-item.completed .step-label {
  color: #1277ba;
}
.step-navigation .step-nav-item .step-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  color: var(--grey);
  transition: color 0.3s ease;
  line-height: 1.2;
}

/* Progress Bar */
.progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background: #1277ba;
  transition: width 0.5s ease;
  z-index: 1;
}

/* Step Content */
.step-content {
  display: none;
  padding: 3rem 0;
  animation: fadeIn 0.5s ease-in-out;
}
.step-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-card {
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(18, 119, 186, 0.08);
  border: 1px solid rgba(18, 119, 186, 0.1);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1277ba, #0a5a87);
}
.step-card .step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1277ba;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.step-card .step-title .step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1277ba, #0a5a87);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Requirement Items */
.requirement-item {
  background: #f2f7f7;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #1277ba;
  transition: all 0.3s ease;
  position: relative;
}
.requirement-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(18, 119, 186, 0.1);
}
.requirement-item .requirement-number {
  position: absolute;
  top: -10px;
  left: 1rem;
  width: 30px;
  height: 30px;
  background: #1277ba;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.requirement-item .requirement-content {
  margin-top: 5px;
}
.requirement-item .requirement-content .requirement-title {
  font-weight: 600;
  color: #99958F;
  margin-bottom: 0.5rem;
}
.requirement-item .requirement-content .requirement-description {
  color: var(--grey);
  font-size: 0.95rem;
}

/* Process Timeline */
.process-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #EEEFF0;
  transition: all 0.3s ease;
}
.process-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(18, 119, 186, 0.1);
}
.process-item .process-number {
  width: 30px;
  height: 30px;
  background: #1277ba;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.process-item .process-content h4 {
  color: #1277ba;
  font-size: 20px;
  margin-bottom: 0.5rem;
}
.process-item .process-content p {
  color: var(--grey);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #EEEFF0;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.highlight-box .highlight-icon {
  width: 40px;
  height: 40px;
  background: #EEEFF0;
  color: #99958F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.highlight-box .highlight-text {
  font-weight: 600;
  color: #8b6914;
  margin: 0;
}

/* Navigation Buttons */
.step-navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #EEEFF0;
}
.step-navigation-buttons .btn-step {
  padding: 12px 30px;
  border-radius: 0px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.step-navigation-buttons .btn-step.btn-primary-step {
  background: #1277ba;
  color: white;
}
.step-navigation-buttons .btn-step.btn-primary-step:hover {
  background: #0a5a87;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 119, 186, 0.3);
  color: white;
}
.step-navigation-buttons .btn-step.btn-secondary-step {
  background: #EEEFF0;
  color: var(--grey);
}
.step-navigation-buttons .btn-step.btn-secondary-step:hover {
  background: #f2f7f7;
  color: #99958F;
}

/* Summary Section */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.summary-grid .summary-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  border: 2px solid #EEEFF0;
  transition: all 0.3s ease;
}
.summary-grid .summary-card:hover {
  transform: translateY(-5px);
  border-color: #1277ba;
  box-shadow: 0 10px 30px rgba(18, 119, 186, 0.15);
}
.summary-grid .summary-card .summary-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1277ba, #0a5a87);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.summary-grid .summary-card .summary-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #99958F;
  margin-bottom: 0.5rem;
}
.summary-grid .summary-card .summary-description {
  color: var(--grey);
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }
  .step-nav-container {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .step-nav-container::before {
    display: none;
  }
  .step-nav-item {
    max-width: none;
    flex: 0 0 auto;
  }
  .step-card {
    padding: 1.5rem;
  }
  .step-card .step-title {
    font-size: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  .step-navigation-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .step-navigation-buttons .btn-step {
    width: 100%;
    justify-content: center;
  }
  .summary-grid {
    grid-template-columns: 1fr;
  }
}
.post {
  padding-bottom: 50px;
  padding-top: 50px;
  width: 95%;
}
.post .titles .title {
  font-weight: 600;
  font-size: 40px;
  font-style: italic;
}
.post .titles .excerpt {
  margin-top: 15px;
  margin-left: 0px;
  margin-right: 15px;
  border-left: 5px solid #1277ba;
  padding: 10px 15px 10px 15px;
  display: block;
  font-size: 18px;
}
.post .post-thumbnail {
  margin-bottom: 20px;
}
.post .post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.post .post-thumbnail .post-meta {
  display: flex;
  padding: 10px 0px 10px 0px;
}
.post .post-thumbnail .post-meta a {
  color: #99958F;
  padding-left: 5px;
}
.post .post-thumbnail .post-meta a:hover {
  color: #000;
  opacity: 1;
}
.post .post-thumbnail .post-meta span {
  position: relative;
}
.post .content p {
  font-size: 1.25rem;
  line-height: 1.5;
}
.post .content ul, .post .content ol {
  margin-left: 0px;
  padding-left: 20px;
}
.post .content h1 {
  font-size: 20px;
  color: #f2f7f7;
  font-weight: 700;
}
.post .content blockquote {
  position: relative;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.post .content blockquote p {
  margin-bottom: 0px;
  font-style: italic;
  color: #000;
}
.post .content blockquote:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -25px;
  top: 0px;
  content: "\f10d";
  font-size: 2.5em;
  color: #1277ba;
}

.sticky-sidebar {
  background: #f2f7f7;
  margin-top: 50px;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 80px;
  margin-bottom: 100px;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.sticky-sidebar.scroll-stick {
  transform: translateY(-10px);
}
.sticky-sidebar h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}
.sticky-sidebar .related-posts {
  list-style: none;
  padding: 0;
  margin-left: 0px;
}
.sticky-sidebar .related-posts li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.sticky-sidebar .related-posts li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #99958F;
  width: 100%;
  background: white;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.sticky-sidebar .related-posts li a img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}
.sticky-sidebar .related-posts li a span {
  font-size: 1rem;
  font-weight: 600;
}
.sticky-sidebar .related-posts li a:hover {
  background: #f2f7f7;
  color: white;
}
.sticky-sidebar .subscribe {
  position: relative;
  padding: 30px 20px 20px 20px;
  border-radius: 10px;
  border: 1px solid white;
}
.sticky-sidebar .subscribe h4 {
  color: #fff;
}
.sticky-sidebar .subscribe p {
  color: #fff;
}
.sticky-sidebar .subscribe .subscribe-input {
  color: #fff;
  position: relative;
}
.sticky-sidebar .subscribe .subscribe-input input {
  border-radius: 20px;
  padding: 10px 20px;
}
.sticky-sidebar .subscribe .subscribe-input button {
  background: #1277ba;
  position: absolute;
  right: 4px;
  line-height: 1;
  padding: 8px 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 20px;
  color: #fff;
}
.sticky-sidebar .subscribe .subscribe-input button:hover {
  background: #f2f7f7;
}

/******** *****   Responsiveness *****  ***********/
/*
  * Authour: Alfred Maina 
  * Company: @Oxygene (http://Oxygene.co.ke)
*/
/* Extra Small Devices, .visible-xs-* */
@media (max-width: 1500px) {
  body {
    font-size: 14px;
  }
  h3 {
    font-size: 1.5em;
  }
  h2 {
    font-size: 1.8em;
  }
  .width-80 {
    width: 85%;
  }
  .width-90 {
    width: 92%;
  }
  .page-banner .banner-content {
    left: 7.5%;
  }
  .title-wrapper {
    width: 65%;
  }
  .site-header {
    width: 85%;
    left: 7.5%;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
    line-height: 30px;
    height: 30px;
    padding: 0px 10px;
    font-size: 14px;
  }
  .site-header .site-branding img {
    max-width: 80px;
  }
  .site-header .top-header {
    padding: 5px 0px;
  }
  .site-header .top-header ul li {
    padding: 5px 10px;
    font-size: 11px;
  }
  .site-header .top-header ul li a {
    color: #fff;
    font-size: 11px;
  }
  .landing-section .landing-banner-content {
    max-width: 400px;
    bottom: 30px;
    left: 7.5%;
  }
  .landing-section .landing-banner-content .card .landing-title {
    font-size: 2.2em;
  }
  .btn {
    padding: 4px 20px;
    font-size: 12px;
  }
  .landing-section .custom-dots .custom-dot {
    width: 60px;
    height: 40px;
  }
  .landing-section .custom-dots {
    bottom: 30px;
  }
  .trific-innovation {
    padding: 40px 0px;
  }
  .welcome-section {
    padding: 40px 0px;
  }
  .welcome-section .marquee-row .card {
    position: relative;
    width: 400px;
    height: 300px;
  }
  .business-sector .carousel-nav button {
    background: none;
    border: 1px solid #ccc;
    padding: 3px 6px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s ease;
  }
  .business-carousel .owl-stage {
    display: flex;
  }
  .our-work .stats .card {
    padding: 30px 7px;
  }
  .our-work .row.stats .col-md-3 {
    padding: 6px;
  }
  .our-work .why-us .card {
    padding: 15px;
  }
  .partners {
    padding: 50px 0px;
  }
  .partners .title-wrapper {
    padding-bottom: 20px;
  }
  .home-news {
    padding: 50px 0px;
  }
  .home-news .title-wrapper .title {
    font-size: 1.5em;
  }
  .apply .scroll-marquee .marquee-track .img-wrapper {
    width: 320px;
    height: 42vh;
    padding: 5px;
  }
  .apply .applybox {
    padding: 40px;
    width: 80%;
    max-width: 999px;
  }
  .apply .applybox .title {
    font-size: 30px;
  }
  .testimonials-slide {
    padding: 30px 0px;
  }
  .testimonials-slide .img-wrapper {
    min-height: 45vh;
  }
  .testimonials-slide .card-body {
    padding: 20px 15px 10px 15px;
  }
  .testimonials-slide .card-body .card-excerpt {
    border-left: 2px solid #1277ba;
    padding: 5px 10px;
  }
  .testimonials-slide .card-body .card-excerpt {
    border-left: 2px solid #1277ba;
    padding: 5px 10px;
  }
  .video-modal .modal-lg, .video-modal .modal-xl {
    max-width: 900px;
  }
  .site-footer {
    padding: 50px 0px 20px 0px;
  }
  .site-footer .footer-links {
    padding-top: 40px;
    margin-top: 40px;
  }
  .site-footer .copyright {
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
  }
  .site-footer .site-branding img {
    max-width: 150px;
  }
  .page-banner {
    height: 50vh;
  }
  .page-banner .banner-content h3 {
    font-size: 1.5em;
  }
  .page-banner .banner-content {
    bottom: 25%;
  }
  .page-banner .banner-content .page-heading {
    font-size: 1em;
    margin-bottom: 6px;
  }
  .values {
    padding: 40px 0px;
  }
  .values .core-values {
    padding-top: 20px;
  }
  .values .core-values .card {
    padding: 15px;
  }
  .values .core-values .card h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .sub-menu-list li {
    padding-right: 20px;
  }
  .sub-menu-list li:after {
    right: 10px;
  }
  .resources {
    padding: 50px 0px;
  }
  .filters {
    margin-bottom: 30px;
  }
  .contact .info li {
    margin-right: 20px;
  }
  .contact .info li .icon-wrap {
    margin: 0px 6px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .contact .info li .details a {
    font-size: 16px;
  }
  .contact .info li .details p {
    font-size: 12px;
  }
  .contact .form-wrapper {
    margin-left: 40px;
    border-radius: 10px;
    margin-top: -150px;
  }
  .members-single .director .testimony::before {
    left: 20px;
  }
  .members-single .director .testimony {
    font-size: 16px;
    padding: 20px 40px 20px 40px;
    border-radius: 15px;
  }
  .subscribe {
    padding: 20px 20px 20px 20px;
  }
  .subscribe h4 {
    font-size: 1.2rem;
  }
  .subscribe .subscribe-input input {
    border-radius: 20px;
    padding: 5px 20px;
    font-size: 14px;
  }
  .subscribe .subscribe-input button {
    right: 2px;
    font-size: 14px;
    padding: 5px 20px;
  }
  .post .titles .title {
    font-size: 30px;
  }
  .post .titles .excerpt {
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 15px 10px 15px;
    display: block;
    font-size: 16px;
  }
  .post .content p {
    font-size: 1rem;
  }
  .sticky-sidebar {
    padding: 30px 15px;
    top: 30px;
    margin-bottom: 50px;
  }
  .sticky-sidebar h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  .sticky-sidebar .related-posts li {
    margin-bottom: 10px;
  }
  .sticky-sidebar .related-posts li a span {
    font-size: 0.8rem;
  }
  .sticky-sidebar .subscribe {
    padding: 20px 15px 20px 15px;
  }
  .sticky-sidebar .subscribe h4 {
    font-size: 1.2rem;
  }
  .sticky-sidebar .subscribe .subscribe-input input {
    border-radius: 20px;
    padding: 7px 20px;
    font-size: 14px;
  }
  .sticky-sidebar .subscribe .subscribe-input button {
    right: 2px;
    font-size: 14px;
    padding: 5px 20px;
  }
}
/* Small Devices, .visible-sm-* */
/* Medium Devices, .visible-md-* */
/* Medium Devices, .visible-md-* */
/* Large Devices, .visible-lg-* */
@media (max-width: 767px) {
  body {
    font-size: 13px;
  }
  .site-header .top-header .top-right {
    display: none;
  }
  .site-header .top-header .top-left {
    width: 100%;
  }
  .site-header {
    width: 90%;
    left: 5%;
  }
  .site-header .top-header ul {
    justify-content: space-between;
  }
  .site-header .top-header ul li {
    font-size: 9px;
  }
  .site-header .top-header ul li a {
    font-size: 9px;
  }
  .site-header .top-header ul li:last-child {
    padding-right: 0px;
  }
  .site-header .site-branding img {
    max-width: 70px;
  }
  .site-header.scrolled .main-menu {
    display: none;
  }
  .site-header.visible #mega-menu-wrap-menu-1 .mega-menu-toggle.mega-menu-open + #mega-menu-menu-1 {
    left: -18px;
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item {
    border-bottom: 1px solid rgba(242, 247, 247, 0.5);
  }
  #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item a.mega-menu-link {
    padding: 6px 20px;
    height: auto;
  }
  .site-header #mega-menu-item-697 {
    background: #f2f7f7 !important;
    margin-left: 0px !important;
    transition-duration: 300ms !important;
    border-top-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    padding-left: 3px !important;
  }
  .site-header #mega-menu-item-697 a {
    color: #1277ba !important;
  }
  .landing-section {
    height: 60vh;
    min-height: 400px;
  }
  .landing-section .landing-video {
    min-height: 400px;
  }
  .landing-section .item {
    min-height: 400px;
    height: 60vh;
  }
  .landing-section .landing-banner-content .card .landing-title {
    font-size: 1.2em;
  }
  .landing-section .landing-banner-content {
    max-width: 300px;
    bottom: 10px;
    left: 3%;
  }
  .landing-section .landing-banner-content .card .ctas .btn {
    margin: 8px 10px 8px 0px;
  }
  .landing-section .landing-banner-content .card .landing-title {
    margin-bottom: 10px;
  }
  .landing-section .custom-dots {
    right: 15px;
    bottom: 80px;
    display: block;
  }
  .landing-section .custom-dots .custom-dot {
    width: 35px;
    height: 25px;
    margin-bottom: 5px;
  }
  h2 {
    font-size: 1.5em;
  }
  h3 {
    font-size: 1.2em;
  }
  .title-wrapper {
    width: 100%;
  }
  .welcome-section h2 {
    margin-bottom: 10px;
  }
  .business-sector {
    padding-bottom: 100px;
  }
  .business-sector .directions {
    bottom: 30px;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .business-sector .width-90 {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  .our-work {
    padding: 50px 0px;
  }
  .our-work .title-wrapper {
    width: 100%;
  }
  .our-work .ctas {
    display: flex;
    margin: 20px 0px;
  }
  .our-work .why-us .card .icon-wrapper {
    width: 30px;
    padding: 5px;
  }
  .our-work .why-us .card h3 {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .partners .title-wrapper .title {
    font-size: 1.4em;
  }
  .testimonials-slide .directions {
    bottom: 30px;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .testimonials-slide {
    padding-bottom: 100px;
  }
  .testimonials-slide .width-90 {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer .site-info h2 {
    margin-bottom: 20px;
  }
  .site-footer .follow .mx-auto {
    margin: 30px 0px 0px 0px !important;
  }
  .site-footer .footer-links .offset-1 {
    margin-left: 0px;
  }
  .site-footer .copyright {
    margin-top: 20px;
    padding-top: 20px;
  }
  .apply .scroll-marquee .marquee-track .img-wrapper {
    width: 200px;
    height: 25vh;
  }
  .apply .applybox {
    width: 88%;
    padding: 20px;
  }
  .apply .applybox .offset-1 {
    margin-left: 0px;
  }
  .apply .applybox .btn {
    margin-top: 20px;
  }
  .apply .applybox .title {
    font-size: 20px;
    margin-bottom: 0px;
  }
  .page-banner {
    height: 40vh;
  }
  .page-banner .banner-content {
    width: 85%;
  }
  .page-banner .banner-content h3 {
    font-size: 1.2em;
  }
  .team {
    padding: 40px 0px;
  }
  .team .title-wrapper {
    padding-bottom: 15px;
  }
  .team-modal.modal .modal-body .card {
    padding: 5%;
    height: auto;
  }
  .repeater {
    padding: 40px 0px 20px 0px;
  }
  .repeater .content {
    padding: 30px 0px;
    width: 100%;
  }
  .sub-menu-list {
    display: block;
    padding: 30px 0px 10px 0px;
  }
  .sub-menu-list li {
    padding: 10px 20px 10px 0px;
  }
  .sub-menu-list li:after {
    width: 50px;
    height: 2px;
    background: rgba(18, 119, 186, 0.9);
    right: auto;
    left: 0px;
    bottom: 0px;
    top: auto;
    transform: translateY(0%);
  }
  .sub-menu-list li:last-child:after {
    width: 0px;
  }
  .team {
    padding: 40px 0px 0px 0px;
  }
  .team-members .card .card-body {
    opacity: 1;
  }
  .filters .custom-select {
    min-width: 220px;
  }
  .members-single {
    padding: 20px 0px;
  }
  .members-single .titles {
    flex-wrap: wrap;
  }
  .members-single .titles .social {
    margin-left: 0px;
  }
  .members-single .titles .social li {
    width: 25px;
    height: 25px;
  }
  .members-single .titles .social li a {
    padding: 10px;
  }
  .members-single .titles .link {
    padding-left: 10px;
  }
  .members-single .video-container {
    border-radius: 5px;
  }
  .members-single .director .testimony {
    font-size: 14px;
    font-style: italic;
    padding: 20px 30px 20px 30px;
    border-left: 3px solid #1277ba;
    border-right: 3px solid #1277ba;
    border-radius: 10px;
  }
  .members-single .director .director-details {
    padding: 0px 0px 30px 0px;
  }
  .members-single .side-bar {
    position: relative;
    width: 100%;
    top: 20px;
  }
  .post {
    padding-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
  .post .titles .title {
    font-size: 20px;
  }
  .post .titles .excerpt {
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 10px;
    border-left: 3px solid #1277ba;
    padding: 10px 0px 10px 10px;
    font-size: 14px;
  }
  .post .post-thumbnail {
    margin-bottom: 0px;
  }
  .post .post-thumbnail img {
    border-radius: 5px;
  }
  .post .post-thumbnail .post-meta {
    flex-wrap: wrap;
    padding: 10px 0px 10px 0px;
    font-size: 10px;
  }
  .post .post-thumbnail .post-meta .post-views {
    margin-bottom: 0px;
    transform: translatey(-2px);
  }
  .post .post-thumbnail .post-meta .post-views .post-views-icon {
    font-size: 10px !important;
    padding-top: 4px;
    width: 10px;
  }
  .post .post-thumbnail .post-meta .pr-3 {
    padding-right: 10px !important;
  }
  .post .post-thumbnail .post-meta a {
    padding-left: 1px;
  }
  .sticky-sidebar {
    padding: 30px 15px;
    top: 0px;
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .sticky-sidebar .related-posts li a span {
    font-size: 0.7rem;
  }
  .video-container {
    border-radius: 5px;
  }
  .filter-section .filter-tabs {
    justify-content: flex-start;
  }
  .all-events {
    padding: 30px 0px;
  }
  .all-events .card .img-wrapper .date {
    top: 5px;
    padding: 4px 10px;
    border-bottom-left-radius: 15px;
    font-size: 12px;
  }
  .all-events .card .img-wrapper .date i {
    font-size: 11px;
    transform: translateY(-1px);
  }
  .all-events .card .content {
    width: 94%;
  }
  .all-events .card .content .title {
    font-size: 18px;
    padding-top: 20px;
  }
  .all-events .card .content .details ul {
    display: block;
  }
  .all-events .card .content .details ul li {
    padding-right: 10px;
  }
  .all-events .card .content .ctas .btn {
    padding: 4px 12px;
    font-size: 10px;
  }
  .event-info {
    padding: 40px 0px;
    position: relative;
  }
  .event-info .content {
    padding: 20px 0px 0px 0px;
  }
  .event-info .content .title {
    font-size: 20px;
  }
  .event-info .content .excerpt {
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 10px;
    border-left: 3px solid #1277ba;
    padding: 7px 0px 7px 10px;
  }
  .event-info .sticky-event-sidebar {
    margin-top: 20px;
  }
  .event-info .sticky-event-sidebar .sidebar-info {
    padding: 30px 20px 20px 30px;
  }
  .event-info .sticky-event-sidebar .sidebar-info ul li {
    padding: 12px 0px;
  }
  .event-gallery {
    padding: 30px 0px;
  }
  .event-gallery img {
    height: 150px;
  }
  .home-news {
    padding: 35px 0px;
  }
  .contact {
    padding: 30px 0px;
  }
  .contact .info {
    margin: 0px 0px 20px 0px;
    justify-content: space-between;
  }
  .contact .info li {
    margin-right: 15px;
  }
  .contact .info li .icon-wrap {
    margin: 0px 2px;
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  .contact .info li .details {
    margin-left: 5px;
  }
  .contact .info li .details a {
    font-size: 12px;
  }
  .contact .info li:last-child {
    margin-right: 0px;
  }
  .contact iframe {
    height: 300px;
  }
  .contact .form-wrapper {
    margin: 10px 0px 0px 0px;
  }
  .contact .form-wrapper form input, .contact .form-wrapper form textarea {
    border-radius: 5px !important;
  }
  .progress-line {
    height: 1px;
    top: 36%;
  }
  .step-navigation {
    padding: 0.8rem 0;
  }
  .step-navigation .width-80 {
    width: 95%;
  }
  .step-navigation .step-nav-item .step-circle {
    width: 27px;
    height: 27px;
    font-size: 12px;
    margin-bottom: 0.5rem;
  }
  .step-navigation .step-nav-item .step-label {
    font-size: 9px;
  }
  .step-content {
    padding: 1.5rem 0;
  }
  .step-card {
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  .step-card .step-title {
    font-size: 1.2rem;
  }
  .step-navigation-buttons {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 2px solid #EEEFF0;
  }
  .requirement-item .requirement-content .requirement-description {
    font-size: 12px;
  }
  .highlight-box {
    border: 1px solid #EEEFF0;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    gap: 0.6rem;
  }
  .process-item {
    gap: 1rem;
    display: block;
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 4px;
  }
  .process-item .process-content h4 {
    font-size: 14px;
    margin-bottom: 0.4rem;
  }
  .process-item .process-number {
    position: relative;
    margin: 0px 0px 10px 0px;
  }
  .application-form {
    padding: 20px 0px;
  }
}/*# sourceMappingURL=style.css.map */