/*--------------------------------------------------------------
# 1. HeroBiz template variables 
--------------------------------------------------------------*/
:root {
  /* Fonts */
  --font-default: "Montserrat", sans-serif;
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;

  /* Colors */
  /* The *-rgb color names are simply the RGB converted value of the corresponding color for use in the rgba() function */

  /* Default text color */
  --color-default: #1a1f24;
  --color-default-rgb: 26, 31, 36;

  /* Defult links color */
  --color-links: #123c66;
  --color-links-hover: #1ec3e0;

  /* Primay colors */
  --color-primary: #123c66;
  --color-primary-light: #1ec3e0;
  --color-primary-dark: #0189a1;

  --color-primary-rgb: 18, 60, 102;
  --color-primary-light-rgb: 30, 195, 224;
  --color-primary-dark-rgb: 1, 137, 161;

  /* Secondary colors */
  --color-secondary: #123c66;
  --color-secondary-light: #8f9fae;
  --color-secondary-dark: #3a4753;
  --color-yellow: #f7d02a;
  --color-secondary-rgb: 247, 208, 42;
  --color-secondary-light-rgb: 143, 159, 174;
  --color-secondary-dark-rgb: 58, 71, 83;

  /* General colors */
  --color-blue: #0d6efd;
  --color-blue-rgb: 13, 110, 253;

  --color-indigo: #6610f2;
  --color-indigo-rgb: 102, 16, 242;

  --color-purple: #6f42c1;
  --color-purple-rgb: 111, 66, 193;

  --color-pink: #f3268c;
  --color-pink-rgb: 243, 38, 140;

  --color-red: #df1529;
  --color-red-rgb: 223, 21, 4;

  --color-orange: #fd7e14;
  --color-orange-rgb: 253, 126, 20;

  --color-yellow: #ffc107;
  --color-yellow-rgb: 255, 193, 7;

  --color-green: #059652;
  --color-green-rgb: 5, 150, 82;

  --color-teal: #20c997;
  --color-teal-rgb: 32, 201, 151;

  --color-cyan: #0dcaf0;
  --color-cyan-rgb: 13, 202, 240;

  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;

  --color-gray: #6c757d;
  --color-gray-rgb: 108, 117, 125;

  --color-black: #000000;
  --color-black-rgb: 0, 0, 0;
}

/*--------------------------------------------------------------
# 2. Override default Bootstrap variables
--------------------------------------------------------------*/
:root {
  --bs-blue: var(--color-blue);
  --bs-indigo: var(--color-indigo);
  --bs-purple: var(--color-purple);
  --bs-pink: var(--color-pink);
  --bs-red: var(--color-red);
  --bs-orange: var(--color-orange);
  --bs-yellow: var(--color-yellow);
  --bs-green: var(--color-green);
  --bs-teal: var(--color-teal);
  --bs-cyan: var(--color-cyan);
  --bs-white: var(--color-white);
  --bs-gray: var(--color-gray);
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: var(--color-blue);
  --bs-secondary: var(--color-blue);
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: var(--color-primary-rgb);
  --bs-secondary-rgb: var(--color-secondary-rgb);
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: var(--color-white-rgb);
  --bs-black-rgb: var(--color-black-rgb);
  --bs-body-color-rgb: var(--color-default-rgb);
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: var(--font-default);
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: var(--font-default);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: var(--color-default);
  --bs-body-bg: #fff;
}

/*--------------------------------------------------------------
# 3. Set color and background class names
--------------------------------------------------------------*/
/* Fonts */
.font-default {
  font-family: var(--font-default) !important;
}
.font-primary {
  font-family: var(--font-primary) !important;
}
.font-secondary {
  font-family: var(--font-secondary) !important;
}

/* Text Colors */
.color-default {
  color: var(--color-default) !important;
}
.color-links {
  color: var(--color-links) !important;
}
.color-links:hover {
  color: var(--color-links-hover) !important;
}
.color-primary {
  color: var(--color-primary) !important;
}
.color-primary-light {
  color: var(--color-primary-light) !important;
}
.color-primary-dark {
  color: var(--color-primary-dark) !important;
}
.color-secondary {
  color: var(--color-secondary) !important;
}
.color-secondary-light {
  color: var(--color-secondary-light) !important;
}
.color-secondary-dark {
  color: var(--color-secondary-dark) !important;
}
.color-blue {
  color: var(--color-blue) !important;
}
.color-indigo {
  color: var(--color-indigo) !important;
}
.color-purple {
  color: var(--color-purple) !important;
}
.color-pink {
  color: var(--color-pink) !important;
}
.color-red {
  color: var(--color-red) !important;
}
.color-orange {
  color: var(--color-orange) !important;
}
.color-yellow {
  color: var(--color-yellow) !important;
}
.color-green {
  color: var(--color-green) !important;
}
.color-teal {
  color: var(--color-teal) !important;
}
.color-cyan {
  color: var(--color-cyan) !important;
}
.color-white {
  color: var(--color-white) !important;
}
.color-gray {
  color: var(--color-gray) !important;
}
.color-black {
  color: var(--color-black) !important;
}

/* Background Colors */
.bg-default {
  background-color: var(--color-default) !important;
}
.bg-primary {
  background-color: var(--color-primary) !important;
}
.bg-primary-light {
  background-color: var(--color-primary-light) !important;
}
.bg-primary-dark {
  background-color: var(--color-primary-dark) !important;
}
.bg-secondary {
  background-color: var(--color-secondary) !important;
}
.bg-secondary-light {
  background-color: var(--color-secondary-light) !important;
}
.bg-secondary-dark {
  background-color: var(--color-secondary-dark) !important;
}
.bg-blue {
  background-color: var(--color-blue) !important;
}
.bg-indigo {
  background-color: var(--color-indigo) !important;
}
.bg-purple {
  background-color: var(--color-purple) !important;
}
.bg-pink {
  background-color: var(--color-pink) !important;
}
.bg-red {
  background-color: var(--color-red) !important;
}
.bg-orange {
  background-color: var(--color-orange) !important;
}
.bg-yellow {
  background-color: var(--color-yellow) !important;
}
.bg-green {
  background-color: var(--color-green) !important;
}
.bg-teal {
  background-color: var(--color-teal) !important;
}
.bg-cyan {
  background-color: var(--color-cyan) !important;
}
.bg-white {
  background-color: var(--color-white) !important;
}
.bg-gray {
  background-color: var(--color-gray) !important;
}
.bg-black {
  background-color: var(--color-black) !important;
}

:root {
  scroll-behavior: smooth;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader img {
  width: 120px;
  height: auto;
  animation: imgPreload 3s alternate infinite;
}

@keyframes imgPreload {
  0% {
    width: 120px;
  }
  50% {
    width: 150px;
  }
  100% {
    width: 120px;
  }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top,
.whatsapp-button {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  position: fixed;
  bottom: 40px;
  z-index: 995;
}
.scroll-top {
  visibility: hidden;
  opacity: 0;
  right: 60px;
  background: var(--color-primary);
}
.whatsapp-button {
  right: 15px;
  background: #075e54;
}

.scroll-top i,
.whatsapp-button i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header > div {
  max-width: 1100px;
  margin: auto;
}
.breadcrumb .text > * {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: flex;
}
/* .breadcrumb .text { */
/* float: right;

} */
.header.sticked {
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}
.header .logo img {
  transition: all 1s;
}
.header:not(.sticked) .logo img {
  max-height: 80px;
  margin-right: 6px;
}
.header.sticked .logo img {
  max-height: 65px;
}
.header.sticked > div {
  padding-top: 3px;
  padding-bottom: 3px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 14px;
  color: var(--color-primary);
  background: #fff;
  padding: 8px 23px;
  border-radius: 20px;
  transition: 0.3s;
  font-family: var(--font-secondary);
  font-size: small;
}
.header.sticked .btn-getstarted,
body.contact-form-body .header .btn-get-started,
.careers-page .header .btn-get-started {
  background: var(--color-primary);
  color: #fff;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85);
}

@media (max-width: 1279px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 10px;
  }
}

.header .btn-getstarted {
  font-size: 15px;
}
/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 800px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 15px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 400;
    color: rgba(var(--color-secondary-dark-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover > a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover > a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  .header .btn-getstarted {
    font-size: 15px;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.homepage-link {
  display: none;
}
@media (max-width: 800px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-primary-rgb), 1);
    overflow-y: auto;
    transition: 0.3s;
    height: 100%;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .navbar ul li {
    display: block;
    width: 100%;
    max-width: 300px;
    text-transform: uppercase;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
  }
  .header:not(.sticked) .mobile-nav-toggle {
    color: #fff;
  }
  .header .btn-getstarted {
    display: block;
    transition: 0.5s;
    z-index: 1;
  }
  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }
  .mobile-nav-active .nav-link.homepage {
    display: initial;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-primary-rgb), 0.6);
    z-index: 9996;
  }
  .homepage-link {
    display: initial;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  padding: 0;
  background: var(--color-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .carousel-item {
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero .container {
    padding: 0 60px;
  }
}

.hero h2 {
  color: var(--color-secondary);
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 300;
  animation: fadeInDown 1s both 0.2s;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  color: var(--color-secondary-light);
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero .img {
  margin-bottom: 40px;
  animation: fadeInDownLite 1s both;
}

.hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.hero .btn-get-started:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--color-secondary-rgb), 0.4);
  color: rgba(var(--color-white-rgb), 0.98);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-next-icon {
  padding-left: 3px;
}

.hero .carousel-control-prev-icon {
  padding-right: 3px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: rgba(var(--color-secondary-rgb), 0.5);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--color-primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.hero-fullscreen {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-fullscreen-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.hero-fullscreen:before {
  content: "";
  background: rgba(var(--color-white-rgb), 0.85);
  position: absolute;
  inset: 0;
}

@media (min-width: 1365px) {
  .hero-fullscreen {
    background-attachment: fixed;
  }
}

.hero-fullscreen h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.hero-fullscreen h2 span {
  color: var(--color-primary);
}

.hero-fullscreen p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-fullscreen .btn-get-started {
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-fullscreen .btn-watch-video {
  font-size: 14px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-fullscreen .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-fullscreen .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-fullscreen h2 {
    font-size: 32px;
  }

  .hero-fullscreen p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-fullscreen .btn-get-started,
  .hero-fullscreen .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Static Hero Section
--------------------------------------------------------------*/
.hero-static {
  width: 100%;
  min-height: 50vh;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.hero-static h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.hero-static h2 span {
  color: var(--color-primary);
}

.hero-static p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-static .btn-get-started {
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-static .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-static .btn-watch-video {
  font-size: 14px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-static .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-static .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-static .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-static h2 {
    font-size: 32px;
  }

  .hero-static p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-static .btn-get-started,
  .hero-static .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.featured-services .service-item h4 a {
  color: var(--color-secondary);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
}

.featured-services .service-item:hover h4 a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 60px 0 60px 0;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/
.onfocus {
  padding: 0;
}

.onfocus .video-play {
  min-height: 400px;
  background: linear-gradient(
      rgba(var(--color-black-rgb), 0.4),
      rgba(var(--color-black-rgb), 0.7)
    ),
    url("../img/onfocus-video-bg.jpg") center center;
  background-size: cover;
}

.onfocus .content {
  background: linear-gradient(
      rgba(var(--color-secondary-rgb), 0.5),
      rgba(var(--color-secondary-rgb), 0.8)
    ),
    url("../img/onfocus-content-bg.jpg") center center;
  background-size: cover;
  color: rgba(var(--color-white-rgb), 0.8);
  padding: 40px;
}

@media (min-width: 768px) {
  .onfocus .content {
    padding: 80px;
  }
}

.onfocus .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-white);
}

.onfocus .content ul {
  list-style: none;
  padding: 0;
}

.onfocus .content ul li {
  padding-bottom: 10px;
}

.onfocus .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.onfocus .content p:last-child {
  margin-bottom: 0;
}

.onfocus .content .read-more {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-primary);
}

.onfocus .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.onfocus .content .read-more:hover {
  background: rgba(var(--color-primary-rgb), 0.9);
  padding-right: 19px;
}

.onfocus .content .read-more:hover i {
  margin-left: 10px;
}

.onfocus .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--color-primary) 50%,
    rgba(var(--color-primary-rgb), 0.4) 52%
  );
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.onfocus .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(var(--color-primary-rgb), 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.onfocus .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.onfocus .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--color-white);
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.onfocus .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--color-white);
  background: var(--color-primary);
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}

.team .team-member .social a i {
  line-height: 0;
  font-size: 14px;
}

.team .team-member .social a:hover {
  background: var(--color-primary-light);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  background: var(--color-white);
  margin: -50px 20px 0 20px;
  position: relative;
  border-radius: 8px;
}

.team .team-member .member-info h4 {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 24px;
  color: var(--color-secondary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-gray);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--color-gray);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .map {
  margin-bottom: 40px;
}

.contact .map iframe {
  border: 0;
  width: 100%;
  height: 400px;
}

.contact .info {
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: var(--color-secondary-light);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-secondary-light);
}

.contact .php-email-form {
  width: 100%;
  background: var(--color-white);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--color-white);
  background: var(--color-red);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--color-white);
  background: var(--color-green);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--color-white);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-green);
  border-top-color: var(--color-white);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-secondary-light);
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 15px 50px;
  color: var(--color-white);
  transition: 0.4s;
  border-radius: 0;
}

.contact .php-email-form button[type="submit"]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
}

.footer .footer-content {
  background: var(--color-secondary);
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}

.footer .footer-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

.footer
  .footer-content
  .footer-newsletter
  form
  input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 14px;
  padding: 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-content .footer-newsletter form input[type="submit"]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

.footer .footer-legal {
  padding: 30px 0;
  background: var(--color-secondary-dark);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 15px;
  color: var(--color-white);
}

.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

html,
body {
  height: 100%;
  width: 100%;
}
body {
  position: relative;
  overflow-x: hidden;
  font-size: 15px;
}
* {
  box-sizing: border-box;
  transition: 1s all, color 0s;
}
main > * {
  overflow: hidden;
}
#header {
  position: fixed;
  top: 0;
  padding: 5px 30px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #header {
    padding: 5px 10px;
  }
}
#header:not(.sticked) .logo img:nth-child(2) {
  display: none;
}
#header.sticked .logo img:nth-child(1) {
  display: none;
}
#header.sticked {
  box-shadow: 0px 30px 60px -30px rgba(0, 0, 0, 0.1),
    0px 50px 100px -20px rgba(50, 50, 93, 0.25),
    inset 0px 1px 1px rgba(255, 255, 255, 0.1);
}
#hero {
  position: relative;
}

#header:not(.sticked) .nav-link {
  color: #fff;
}
.carousel {
  height: 60vw;
  min-height: 400px;
}
.carousel-inner {
  height: 100%;
}
@media screen and (min-width: 900px) {
  .carousel {
    max-height: 100vh;
  }
}
.carousel-item {
  height: 100%;
  position: relative;
}
.carousel .img {
  height: 100%;
}
.carousel-item .img::after,
.breadcrumb .img::after {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(18, 60, 102, 0.7);
  content: " ";
  height: 100%;
  width: 100%;
}
.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.carousel-item {
  position: relative;
}
.carousel-item .text,
.breadcrumb .text {
  padding-top: 80px;
  position: absolute;
  color: #fff;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.carousel-item .text {
  text-align: center;
}
.carousel-item .text p,
.breadcrumb .text {
  text-transform: uppercase;
  font-size: 130%;
  color: #fff;
  letter-spacing: 0.2rem;
  font-weight: 800;
}

.counter-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 100px;
  flex-wrap: wrap;
}

@media screen and (max-width: 800px) {
  .counter-section {
    gap: 40px;
    padding: 50px;
  }
}

.counter-section .number {
  height: 100px;
  width: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-yellow);
  font-weight: 700;
  font-size: 25px;
  border-radius: 50%;
  border: 2px solid var(--color-yellow);
}

.counter-section .text {
  width: 100%;
  text-align: center;
  font-size: medium;
  font-weight: 600;
  margin-top: 10px;
}

.projects-carousel {
  max-height: 90vh;
}
.projects-carousel .carousel-indicators {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  margin-left: 30px;
  flex-direction: column;
  width: max-content;
}

.projects-carousel button,
.carousel-indicators [data-bs-target] {
  display: block;
  font-size: 15px;
  text-align: left;
  display: block;
  margin: 5px;
  padding: 5px 30px;
  width: 100%;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  text-indent: initial;
  height: fit-content;
  width: 100%;
  opacity: 1;
}

.projects-carousel button.active {
  border-color: var(--color-yellow);
  background: var(--color-yellow);
}
.projects-carousel button.more-btn {
  margin-top: 15px;
  font-size: 15px;
}
.projects-carousel button.more-btn a {
  color: #fff;
}

.carousel-title {
  position: absolute;
  left: 0;
  top: 30px;
  margin-left: 30px;
  z-index: 1;
  width: auto;
}
.carousel-title .title {
  font-weight: 700;
  font-size: 110%;
  color: #fff;
}
.projects-carousel .carousel-item::after {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  content: " ";
}

.carousel .read-more {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 15px;
  background: #fff;
  color: var(--color-yellow);
}

/* Offer section */
.section-offer {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
}
@media screen and (max-width: 800px) {
  .section-offer {
    padding: 50px 15px;
  }
}
.section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: large;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

/* Service section */
.section-service {
  display: flex;
  cursor: pointer;
  position: relative;
}

.section-service .service,
.section-service .service-inner {
  position: relative;
  height: 100%;
  width: 100%;
}

.section-service .service img {
  height: 100%;
  width: 100%;
  position: relative;
}

.section-service .service .text {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  font-weight: 700;
  justify-content: center;
  color: #fff;
  font-size: large;
  z-index: 15;
  background: rgba(18, 60, 102, 0.5);
  text-align: center;
}
.section-service .service-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.section-service .service-img img {
  height: 100%;
  width: 100%;
}
.service .text {
  cursor: pointer;
}
.section-service .service .text:hover ~ img,
.section-service .service:hover img {
  z-index: 1;
  opacity: 0.9;
}
.section-service .service .text:hover {
  background-color: rgba(18, 60, 102, 0.15);
}

@media screen and (min-width: 900px) {
  .section-service {
    height: 70vh;
  }
  .section-service .service:nth-child(1) .text {
    padding-top: calc(0.1 * 70vh);
  }
  .section-service .service:nth-child(2) .text {
    padding-top: calc(0.25 * 70vh);
  }
  .section-service .service:nth-child(3) .text {
    padding-top: calc(0.4 * 70vh);
  }
  .section-service .service:nth-child(4) .text {
    padding-top: calc(0.55 * 70vh);
  }
  .section-service .service:nth-child(5) .text {
    padding-top: calc(0.7 * 70vh);
  }
}
@media screen and (max-width: 900px) {
  .section-service {
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
    gap: 30px;
    margin-bottom: 70px;
  }
  .section-service .service-img {
    display: none;
  }
  .section-service .service {
    height: 250px;
    border-radius: 7px;
    width: 280px;
    overflow: hidden;
  }
  .section-service .service .text {
    align-items: center;
    justify-content: center;
  }
  .service:hover {
    transform: translateY(-20px);
  }
}

/* Testimony */
.section-testimony {
  padding: 100px 20px;
  background: rgba(18, 60, 102, 0.1);
}
@media screen and (max-width: 800px) {
  .section-testimony {
    padding: 50px 10px;
  }
  .section-testimony .container {
    margin: 0;
  }
}

.section-testimony .section-title {
  margin-bottom: 40px;
}
.testimony {
  /* width: 260px; */
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  position: relative;
}
.testimony-cont {
  padding: 0 10px;
}
.testimony {
  font-size: 15px;
}
.testimony::before {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 10px;
  left: -10px;
  background-color: var(--color-primary);
  border-radius: 10px;
  height: 100%;
  width: 100%;
}

.testimony .head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimony .testimony-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-yellow);
  padding: 5px 10px;
  font-weight: bold;
  font-size: large;
  border-radius: 50%;
}

.testimony .test-name {
  color: #000;
  font-weight: 700;
}
.testimony .test-pos {
  font-size: small;
  opacity: 0.7;
}
.testimonies .buttons {
  display: flex;
  gap: 30px;
  padding-top: 30px;
  justify-content: center;
  margin: auto;
}
.testimonies-button-prev,
.testimonies-button-next {
  background-color: #fff;
  color: var(--color-primary);
  padding: 7px 15px;
  border-radius: 7px;
}

/* Footer */

.footer {
  background-color: var(--color-primary);
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10vw;
  flex-wrap: wrap;
  color: var(--color-yellow);
  padding: 70px;
}
.footer-content .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}
.footer-content i {
  color: inherit;
  font-size: 20px;
  font-weight: 900;
}
.footer-content svg {
  width: 40px;
}
.footer-bottom {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 700px) {
  .footer-content svg {
    width: 30px;
  }
  .footer-content {
    padding: 40px;
    gap: 20px;
    font-size: 15px;
  }
}

/* Breadcrumb */
.breadcrumb {
  min-height: 200px;
  width: 100%;
  height: 20vw;
  position: relative;
}
.breadcrumb .text {
  justify-content: left;
  padding-left: 3rem;
}
.breadcrumb .img {
  height: 100%;
  position: relative;
  width: 100%;
}

/* Img and text divs */
.img-text {
  display: flex;
  justify-content: space-evenly;
  gap: 8vw;
}
.img-text img {
  display: block;
  margin: auto;
  width: 100%;
  aspect-ratio: 4/3;
}
.img-text .text {
  font-size: 15px;
}
.img-text.about-section .text {
  max-width: 500px;
  width: 100%;
}
.img-text .section-title {
  text-align: left;
}
.img-text .text .par {
  font-size: 15px;
  text-align: justify-all;
}
.service-section img,
.service-section .img {
  max-width: 400px;
}
.img-section {
  width: 100%;
}
.img-section img {
  height: auto;
  max-height: initial;
  width: 100%;
}

.img-text .d-flex {
  align-items: flex-start;
  gap: 40px;
  height: fit-content;
}
/* About */
.about-section {
  padding: 10vw;
}
.img.logo-img img {
  object-fit: contain;
}

@media screen and (max-width: 800px) {
  .about-section .img {
    display: none;
  }
  .img-text {
    justify-content: center;
    flex-direction: column;
  }
  .img-text .img,
  .img-text .text {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
  .img-text .text .par {
    font-size: 12.5px;
  }
}

img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.btn {
  padding: 9px 15px;
  border-radius: 20px;
  margin-top: 0;
  transition: 1s transform;
  font-size: 15px;
}
.btn-outline {
  background-color: transparent;
  color: rgba(var(--color-primary-rgb), 0.95);
  border-color: currentColor;
}
.btn-outline:hover {
  border-color: currentColor;
}
.btn-primary {
  background-color: rgba(var(--color-primary-rgb), 0.95);
  border-color: rgba(var(--color-primary-rgb), 0.95);
}
.btn-primary:hover {
  background-color: rgba(var(--color-primary-rgb), 1);
}
.btn:not(.filter-button):hover {
  transform: translateY(-5px);
}

.filter-button {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.service-section .mt-4.d-flex {
  gap: 15px;
}
/* Mission and vision */
.mission-section {
  position: relative;
}
.mission-section .img {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.mission-section .img img {
  height: 100%;
  width: 100%;
}
.mission-section .cont {
  padding: 100px 10vw;
  z-index: 1;
  display: flex;
  gap: 8vw;
  justify-content: space-evenly;
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
}
.mission-section .text {
  width: fit-content;
  max-width: 350px;
  text-align: justify;
  margin: auto;
}
.mission-section .section-title {
  color: var(--color-yellow);
}
.mission-section .par {
  color: #fff;
}
@media screen and (max-width: 700px) {
  .mission-section .cont {
    flex-direction: column;
    gap: 80px;
  }
}

/* Team */
.section-team {
  padding: 100px 20px;
  background: rgba(18, 60, 102, 0.1);
}
.team-div {
  margin-top: 100px;
  display: flex;
  gap: 50px;
  justify-content: center;
  margin: auto;
  width: auto;
  flex-wrap: wrap;
}

.team-member {
  width: 260px;
  max-width: 100%;
  position: relative;
  box-shadow: 0px 30px 60px -30px rgba(0, 0, 0, 0.1),
    0px 50px 100px -20px rgba(50, 50, 93, 0.25),
    inset 0px 1px 1px rgba(255, 255, 255, 0.1);
  background: #fff;
}
.team-member .img {
  width: 100%;
  position: relative;
}
.team-member .img img {
  width: 100%;
  aspect-ratio: 1;
}
@media screen and (max-width: 600px) {
  .team-member {
    width: 220px;
  }
}
/* @media screen and (min-width: 800px) { .team-member {width: 30%} .team-member .img{height:250px}}
@media screen and (min-width: 1100px) { .team-div { gap: 100px;} .team-member {width: 20%} .team-member .img{height:230px}} */

.modal-content {
  border: none;
  width: 350px;
  max-width: 100%;
  margin: auto;
  background: transparent;
}
.section-team .section-title {
  margin-bottom: 50px;
}
.team-member .text {
  display: flex;
  padding: 20px 20px;
  align-items: center;
  justify-content: space-between;
}
.team-member .name {
  font-weight: 600;
  color: var(--color-primary);
}
.team-member .title {
}
.team-member img {
  /* height: 100%;
    width: 100%; */
  object-fit: cover;
}
.team-member .bi {
  font-size: large;
  color: var(--color-yellow);
}

.team-member:hover {
  transform: translateY(-20px);
}
.team-member:hover img {
  transform: scale(1.1);
}
.team-member .img::before {
  content: "View more";
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: var(--color-yellow);
  opacity: 0;
  transition: opacity 1s;
  position: absolute;
  background-color: rgba(18, 60, 102, 0.8);
  height: 100%;
  width: 100%;
}
.team-member:hover .img::before {
  opacity: 1;
}
.member-card {
  width: 100%;
  overflow: hidden;
  border-radius: 25px;
  background-color: #fff;
}
.member-card .image-content {
  position: relative;
}
.member-card .card-img {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-color: #fff;
  padding: 3px;
}
.team-member .img {
  overflow: hidden;
}
.member-card .card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-primary);
}
.member-card .card-img .bi {
  position: absolute;
  bottom: 30px;
  right: -70px;
  font-size: medium;
  color: var(--color-yellow);
}
.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.member-card .details {
  margin-top: 14px;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
  justify-content: space-between;
}
.member-card .name {
  font-weight: 400;
  color: var(--color-yellow);
  z-index: 1;
}
.member-card .position {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  z-index: 1;
}
.member-card .quote {
  margin-top: 30px;
  z-index: 1;
  font-weight: 600;
  font-size: 15px;
}
.member-card .description {
  font-size: small;
  color: #333;
  text-align: center;
}
.image-content {
  row-gap: 5px;
}
.card-content button {
  cursor: pointer;
  color: var(--color-yellow);
  padding: 0px;
}
.member-card .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--color-primary);
  top: 0;
  left: 0;
  border-radius: 25px 25px 0 25px;
}
.bi-quote {
  color: #333;
  padding-right: 20px;
  font-size: 30px;
  opacity: 0.6;
  display: inline-block;
}
.member-card .quote {
  margin-bottom: 14px;
}
.member-card .overlay::before,
.member-card .overlay::after {
  position: absolute;
  height: 40px;
  content: "";
  width: 40px;
  background-color: var(--color-primary);
  right: 0;
  bottom: -40px;
}
.member-card .overlay::after {
  border-radius: 0 25px 0 0;
  background-color: #fff;
}
.member-card .bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.member-card .bi-linkedin {
  color: var(--color-yellow);
  font-size: 25px;
}

/* Projects */
.project-img-swiper .swiper-pagination {
  position: absolute;
  top: 100%;
  margin-top: 30px;
}
.projects-section {
  position: relative;
}
.projects-section::before {
  position: absolute;
  top: 0;
  left: 5%;
  width: 6px;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.projects-section .img-text,
.service-section .img-text {
  position: relative;
  /* flex-wrap: wrap; */
  justify-content: center;
  padding: 100px;
}
.projects-section .img-text {
  gap: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .service-section .img-text {
    padding: 90px 5vw;
  }
  .projects-section .img-text {
    padding-left: 80px;
    padding-right: 30px;
  }
}
/* .projects-section .img-text {
  padding: 100px 3%;
} */
.projects-section .img-text .img {
  width: 100%;
}
.projects-section .year {
  position: absolute;
  left: 5%;
  width: 95%;
  color: var(--color-yellow);
  font-size: large;
  font-weight: 700;
  top: 20px;
  padding-top: 5px;
}
.projects-section .year::before {
  display: inline-block;
  margin-right: 4.5%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background-color: var(--color-yellow);
}
.breadcrumb.no-mar {
  margin-bottom: 0;
}
.projects-section .section-title {
  margin-bottom: 0;
}
.scope-title {
  font-size: medium;
  font-weight: 600;
  color: #000;
}
.project-client {
  color: #000;
}
.project-status,
.project-client {
  font-weight: 600;
}
.project-status {
  color: var(--color-yellow);
  margin-bottom: 20px;
}
.projects-section .view-all {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  margin-bottom: 10px;
}
.projects-section .bi,
.service-section .bi {
  display: inline-block;
  margin-right: 15px;
  color: var(--color-primary);
}
.projects-section .img-text:nth-of-type(even) {
  background-color: rgba(18, 60, 102, 0.1);
}
@media screen and (min-width: 1000px) {
  .projects-section .img-text:nth-of-type(even) {
    background-color: rgba(18, 60, 102, 0.1);
    flex-direction: row-reverse;
  }
  .projects-section .text {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 800px) {
  .service-section .img-text:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 1000px) {
  .projects-section .img-text {
    flex-direction: column;
  }
}
.projects-section .img-text {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
}
.projects-section .img-text .img {
  width: 100%;
  max-width: 800px;
}
.projects-section .text {
  min-width: 300px;
}
.projects-section .img ~ .text {
  max-width: 100%;
}

.projects-section .img-text .img img {
  width: 100%;
  aspect-ratio: 16/8;
}
@media screen and (min-width: 1000px) {
  .projects-section .text {
    max-width: 600px;
  }
  .projects-section .img ~ .text {
    max-width: 300px;
  }
}

/* services */
.service-section {
  justify-content: center;
}
.service-head {
  margin-bottom: 50px;
  gap: 30px;
}
.service-section .img-text {
  max-width: 1200px;
  margin: auto;
}
.service-head .service-img {
  display: flex;
  justify-content: center;
  padding: 20px;
  align-items: center;
  background-color: var(--color-primary);
}

.service-head .section-title {
  font-weight: 900;
  max-width: 400px;
  margin: 0;
}

.service-img img {
  height: auto;
  width: 35px;
}

.service-section .img-text .img img,
.projects-section .img-text .img img {
  /* max-width: 100% !important;
    width: 100%; */
}
@media screen and (min-width: 800px) {
  .service-section .img-text .img img {
    min-width: 400px;
  }
}
/* Contact form */
.contact-form.full {
  position: relative;
  min-height: 100vh;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  gap: 70px;
  background-size: cover;
}

.contact-form:not(.careers).full {
  background-image: url("../img/services/mep-design-service.webp");
}

.contact-form.careers.full {
  background-image: url("../img/bg/mission.jpg");
}

.contact-form.img img {
  height: 100%;
}
.contact-form::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(18, 60, 102, 0.8);
  position: absolute;
}
.contact-form > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form .form,
.contact-form .why-join {
  min-height: 100vh;
  transition: clip-path 0s;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  min-width: 600px;

  width: 70vw;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 28% 100%);
  background: #fff;
  z-index: 1;
}
.contact-form .footer-content {
  gap: 5vh;
  flex-direction: column;
}
.footer-content a {
  color: inherit;
}
.contact-form .footer-content .content {
  flex-direction: row;
  align-items: center;
  justify-content: left;
  width: 100%;
}
.contact-form .text {
  font-weight: 600;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100vh;
  width: fit-content;
}

.contact-form svg {
  width: 30px;
  font-weight: 900;
}

.contact-form form {
  margin-left: 100px;
  width: 350px;
}
.contact-form input,
.contact-form textarea {
  font-size: 15px;
}

@media screen and (max-width: 800px) {
  .contact-form .form {
    position: initial;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
    width: 100%;
    min-width: initial;
  }
  .contact-form form {
    margin-left: 0;
    margin-top: 100px;
  }
  .contact-form .text {
    height: 400px;
    padding-top: 100px;
  }
}

.careers-page #header:not(.sticked) .logo img:nth-child(2) {
  display: block;
}
.careers-page #header:not(.sticked) .logo img:nth-child(1) {
  display: none;
}
.careers-page #header:not(.sticked) .btn-get-started {
  background-color: var(--color-primary);
  color: #fff;
}
@media screen and (min-width: 800px) {
  .contact-form-body #header:not(.sticked) .nav-link {
    color: var(--color-primary);
  }
  .contact-form-body #header:not(.sticked) .btn-getstarted {
    background-color: var(--color-primary);
    color: #fff;
  }

  .careers-page #header:not(.sticked) .nav-link {
    color: var(--color-primary);
  }
  /* .careers-page #header:not(.sticked) .btn-getstarted {
    background-color: var(--color-primary);
    color: #fff;
  } */
}

.social-links a {
  color: #ffff;
  font-size: 15px;
  opacity: 0.5;
  padding: 0 10px;
}
.social-links a:hover {
  opacity: 1;
}
.active-service {
  color: var(--color-yellow);
}

.download-profile {
  position: fixed;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 0;
  background-color: var(--color-yellow);
  color: #fff;
  left: 100%;
  margin-left: -120px;
  border-radius: 0px 0px 5px 5px;
  padding: 10px 15px;
  display: block;
  width: 200px;
  text-align: center;
  z-index: 995;
}
@media screen and (max-screen: 800px) {
  .download-profile {
    font-size: small;
    padding: 6px 10px;
  }
}

.swiper-lazy-preloader {
  border-color: transparent !important;
}

/* Posts */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.post .fa,
.post-description .fa {
  display: inline-block;
  padding-right: 15px;
  color: var(--secondary-color);
}

.posts:not(.career) .post {
  position: relative;
  box-shadow: 0 0 32px 1px rgba(0, 0, 0, 0.1);
}

.posts.career {
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

.posts.career .post {
  max-width: 800px;
  border-bottom: 1px solid #eee;
  padding: 0;
  width: 100%;
}

.post img {
  width: 100%;
  height: 100%;
}

.post .image {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  position: relative;
}
.post .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.post .details {
  display: flex;
  padding: 20px;
  flex-direction: column;
  gap: 25px;
}

.post .post-title {
  font-weight: 600;
  font-family: "Poppins";
  color: var(--color-primary);
  font-size: 13pt;
}

.post .post-time {
  padding-top: 10px;
}

.post .abs {
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: center;
  top: 10px;
  font-family: "Poppins";
  aspect-ratio: 1;
  width: 50px;
  right: 10px;
  padding: 5px;
  color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  font-family: "Poppins";
}

.post .abs .num {
  font-size: 15pt;
  font-weight: 700;
}

.post .abs .text {
  font-size: 8pt;
  margin-top: -5px;
  text-transform: uppercase;
}

.post .post-short-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3; /* Number of lines to show */
  max-height: 3 * 1.2em;
}

.post .list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post .link {
  padding: 0;
  display: flex;
  justify-content: space-between;
  color: var(--color-yellow);
}

.post .link a {
  color: var(--color-primary);
}

.post .post-time svg,
.posts-slide .post-time svg {
  height: 16px;
  width: 16px;
  color: var(--color-yellow);
}

.career .post .post-time {
  color: #000 !important;
}
.posts.career .post .details,
.posts.career {
  gap: 0 !important;
}

.posts-container {
  max-width: 1200px;
  margin: auto;
  padding: 100px 30px;
  width: 100%;
}
.posts {
  padding-top: 50px;
}

@media screen and (max-width: 1000px) {
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .posts-container {
    padding: 50px 30px;
  }
  .posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .post {
    max-width: 450px;
  }
}

.single_post {
  width: 100%;
  display: flex;
  position: relative;
  gap: 5vw;
}

.other-posts {
  position: sticky;
  top: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.other-posts .media {
  width: 350px;
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  gap: 20px;
}

.other-posts h5 {
  font-family: "Poppins";
  font-size: medium;
}

.other-posts img {
  width: 100px;
  aspect-ratio: 4/3;
}

.single_post .image::before {
  display: none;
}

.single_post .image {
  aspect-ratio: 16/9;
}

.single_post .post {
  box-shadow: none;
}

.single_post .details {
  padding-left: 0;
  padding-right: 0;
}

.single_post .post-title {
  font-size: 17pt;
  font-weight: 800;
}

@media screen and (max-width: 900px) {
  .single_post {
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
  }

  .single_post .media {
    width: 100%;
  }

  .single_post .other-posts {
    width: 100%;
    display: none;
    max-width: 600px;
  }

  .single_post .other-posts img {
    width: 150px;
    height: 150px;
  }
}

/* Testimony */
.section-posts-slide {
  padding: 100px 20px;
  background: rgba(18, 60, 102, 0.1);
}

.posts-slide-cont {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .section-posts-slide {
    padding: 50px 10px;
  }
  .section-posts-slide .container {
    margin: 0;
  }
}

.posts-slide .image {
  width: 100%;
  aspect-ratio: 1;
  display: block;
}

.posts-slide img {
  width: 100%;
  height: 100%;
}

.posts-slide a {
  display: flex;
}
.section-posts-slide .section-title {
  margin-bottom: 40px;
}
.posts-slide {
  /* width: 260px; */
  background: #fff;
  position: relative;
  max-width: 300px;
  width: 100%;
}

.posts-slide .posts-slide-body {
  display: flex;
  gap: 10px;
  flex-direction: column;
  font-size: medium;
  padding: 20px;
}

.posts-slide .post-title {
  color: var(--color-primary);
  font-weight: 700;
  font-family: "Poppins";
}

.posts-slide .post-time {
  display: flex;
  align-items: center;
  gap: 10px;
}

.posts-slider .buttons {
  display: flex;
  gap: 30px;
  padding-top: 30px;
  justify-content: center;
  margin: auto;
}
.posts-button-prev,
.posts-button-next {
  background-color: #fff;
  color: var(--color-primary);
  padding: 0 20px;
  border-radius: 7px;
  font-size: 30px;
}

/* Footer */
.team-section {
  max-height: 500px;
}
.team-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-height: 500px;
}

.team-section .large {
  grid-row: span 2;
}

.team-section img {
  height: 100%;
  width: 100%;
}

.team-section .img-cont {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  gap: 20px;
}
.team-section .img-fluid {
  border-radius: 8px;
}

.why-join-us {
  padding: 6px 20px;
  background-color: #f8f9fa;
}

.why-join-us .bg-white {
  max-width: 1200px;
  background-color: #ffffff;
}

.job-listing {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.why-join-us {
  background-color: #f8f9fa;
}

.why-join-us .bg-white {
  background-color: #ffffff;
}

.why-join-us .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.why-join-us .icon svg {
  width: 64px;
  height: 64px;
  fill: #007bff;
}

.why-join-us h4 {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .team-section .container {
    grid-template-columns: 1fr;
  }

  .team-section .large {
    grid-row: span 1;
  }

  .why-join-us .grid-container {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 20px;
}

.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

.img-fluid.large {
  height: 100% !important;
}

.why-join {
  background: #eee;
}
.why-join .whys {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.why-join .why {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.why .icon {
  color: var(--color-yellow);

  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  height: 60px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
}

.why i {
  font-size: 2rem;
  color: var(--color-yellow);
}

.why h4 {
  font-weight: 900;
  color: var(--color-primary);
  font-size: 17px;
}

@media screen and (max-width: 786px) {
  .whys {
    flex-direction: column;
  }
  .carrer-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .carrer-section .img-text {
    flex-direction: column-reverse;
  }
}

@media screen and (min-width: 786px) {
  .img-text.equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.single_post.carrer-post {
  max-width: 800px;
  margin: auto;
  justify-content: center;
}
.img-text.equal .img,
.img-text.equal .text {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}

.header-bg {
  height: 80px;
  content: "";
}

.career i,
.carrer-post i {
  color: var(--color-yellow);
  font-size: 15px;
}

.career .post-time,
.carrer-post .post-time {
  display: flex;
  margin: 0;
  gap: 10px;
}

.career .career-badge,
.carrer-post .career-badge {
  font-size: 14px;
  border-radius: 5px;
  padding: 3px 10px;
  display: inline-block;
}
.career .career-badge.open,
.carrer-post .career-badge.open {
  color: green;
  background: rgba(0, 150, 0, 0.1);
}

.career .career-badge.close,
.carrer-post .career-badge.close {
  color: orange;
  background: rgba(255, 165, 0, 0.1);
}


/* Enhanced Timeline Section Styles */
.timeline-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

.timeline-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 50px;
}

.timeline-line {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 50%;
  width: 3px;
  background-color: #4CAF50;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-line:before,
.timeline-line:after {
  content: '';
  position: absolute;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: #4CAF50;
  border-radius: 50%;
  transform: translateX(-50%);
}

.timeline-line:before {
  top: -15px;
}

.timeline-line:after {
  bottom: -15px;
}

.timeline-item {
  margin-bottom: 70px;
  position: relative;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Base circle styling */
.timeline-circle {
  width: 60px;
  height: 60px;
  background-color: #4CAF50;
  border: 3px solid #2196F3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 5px rgba(33, 150, 243, 0.2);
}

/* Left-side circles (odd items) */
.timeline-item:nth-child(odd) .timeline-circle {
  left: calc(50% - 75px);
  transform: translateX(-50%);
}

/* Right-side circles (even items) */
.timeline-item:nth-child(even) .timeline-circle {
  left: calc(50% + 75px);
  transform: translateX(-50%);
}

.timeline-circle:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 0 8px rgba(33, 150, 243, 0.3);
}

.timeline-number {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.timeline-content {
  background-color: #f1f1f1;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.left-content {
  margin-right: 20px;
  text-align: right;
}

.left-content:after {
  content: '';
  position: absolute;
  right: -10px;
  top: 30px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #f1f1f1;
}

.right-content {
  margin-left: 20px;
  text-align: left;
}

.right-content:after {
  content: '';
  position: absolute;
  left: -10px;
  top: 30px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #f1f1f1;
}

.timeline-year {
  font-size: 28px;
  font-weight: bold;
  color: #64B5F6;
  padding: 10px;
  margin-top: 10px;
  transition: all 0.4s ease;
}

.timeline-title {
  color: #333;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .timeline-line {
    left: 30px;
  }
  
  .timeline-item .col-md-5 {
    width: 80%;
    margin-left: 60px;
  }
  
  .timeline-item .col-md-2 {
    position: absolute;
    left: 0;
    width: auto;
  }
  
  /* Reset alternating circles for mobile view */
  .timeline-item:nth-child(odd) .timeline-circle,
  .timeline-item:nth-child(even) .timeline-circle {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 30px;
    transform: none;
  }
  
  .timeline-number {
    font-size: 20px;
  }
  
  .left-content, .right-content {
    text-align: left;
    margin-left: 15px;
    margin-right: 0;
  }
  
  .left-content:after {
    display: none;
  }
  
  .right-content:after {
    display: none;
  }
  
  .timeline-year {
    text-align: left !important;
    margin-left: 60px;
  }
  
  .order-md-1, .order-md-2, .order-md-3 {
    order: unset;
  }
}