@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --brand-color-primary: #1b7492;
  --brand-color-secondary: #4b7a8c;
  --brand-color-small-detail: #d92437;
  --gray: rgba(255, 255, 255, 0.6);
  --dark-color: #343a40;
  --gray-dark: rgb(114, 113, 113);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

section {
  padding: 0 0 50px 0;
}

.skrew-right {
  position: relative;
}

.product-section {
  position: relative;
}

.product-section .overlay {
  z-index: 0;
}

.titles {
  color: #fff;
  z-index: 2;
  position: relative;
}

.skrew-right::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #ffffff;
  transform: skewX(16deg);
  transform-origin: 50% 100%;
  will-change: transform;
  pointer-events: none;
  z-index: 1;
}

.desktop-navigation {
  background-color: var(--brand-color-primary);
  transition: all 0.3s ease;
}

.desktop-navigation .logo-panel .brand-container {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.desktop-navigation img {
  width: 180px;
  z-index: 2;
  transition: all 0.3s ease;
}

.logo-panel {
  height: 95px;
  transition: all 0.3s ease;
}

.top-header.skrew-left {
  display: flex;
  justify-content: center;
  padding: 13px 0 13px 15px;
  z-index: 2;
}

.skrew-left {
  position: relative;
}

.skrew-left::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #ffffff;
  transform: skewX(16deg);
  transform-origin: 50% 90%;
  will-change: transform;
  pointer-events: none;
  z-index: 1;
}

ul.navbar {
  list-style: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  transition: all 0.3s ease;
}

ul.navbar a {
  color: #fff;
  text-decoration: none;
}

dl,
ol,
ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.social-medias .box {
  background-color: #e1e1e1;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.social-medias .box a {
  color: #000;
  transition: all 0.3s ease;
}

a {
  text-decoration: none;
}

.social-medias .box:hover {
  background-color: var(--brand-color-primary);
}

.social-medias .box:hover a {
  color: #fff;
}

.navbar > li {
  position: relative;
  margin-right: 20px;
}

.navbar > li > a {
  color: white;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.navbar > li::before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  background-color: var(--brand-color-small-detail);
  transition: all 0.3s ease;
}

.navbar > li:hover::before {
  width: 100%;
}

.dropdown {
  position: absolute;
  /* display: none; */
  visibility: hidden;
  top: 174%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 220px;
  opacity: 0;
  transform: translateY(10px);
  border: 1px solid var(--brand-color-primary);
  border-top: 3px solid var(--brand-color-small-detail);
  transition: all 0.4s ease;
  z-index: 999;
}

.navbar li:hover > .dropdown {
  /* display: block; */
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown li {
  position: relative;
}

.dropdown li a {
  color: var(--brand-color-primary);
  padding: 10px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.dropdown li a:hover {
  color: var(--brand-color-small-detail);
}

/* Submenu Styling */
.dropdown-submenu {
  position: absolute;
  /* display: none; */
  visibility: hidden;
  left: 100%;
  top: 10px;
  background-color: #222;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  border-top: 3px solid var(--brand-color-secondary);
  list-style-type: none;
  width: 200px;
}

.dropdown li:hover > .dropdown-submenu {
  /* display: block; */
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Arrow indicator for submenus */
.menu li > a:after,
.dropdown li > a:after {
  float: right;
  color: var(--brand-color-secondary); /* Highlight arrow color */
}

.dropdown-submenu li a:after {
  content: "";
}

.desktop-navigation.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.desktop-navigation.sticky img {
  width: 114px;
  z-index: 2;
}

.desktop-navigation.sticky .top-header.skrew-left {
  display: none;
  height: 0;
}

.desktop-navigation.sticky .logo-panel {
  height: 60px;
}

.mobile-navigation {
  justify-content: space-between;
  display: none;
  z-index: 999;
  align-items: center;
  width: 100%;
  background-color: #fff;
  padding: 5px;
  height: auto;
}

.mobile-navigation.sticky {
  position: fixed;
  top: 0;
}

.mobile-navigation img {
  height: 47px;
}

.mobile-menu img {
  height: 65px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #000;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background-color: #fff;
  color: #000;
  padding: 20px;
  transition: left 0.4s ease;
  z-index: 1000;
  transition: all 0.6s ease;
  overflow: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  right: 0;
  transition: all 0.6s ease;
  z-index: 999999;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.close-menu {
  font-size: 30px;
  cursor: pointer;
}

/* Menu Items */
.menu-items {
  list-style: none;
  padding: 0;
}

.menu-items li {
  margin: 15px 0;
}

.menu-items li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.menu-items li a:hover {
  color: var(--brand-color-primary);
}

.has-submenu ul.submenu {
  list-style: none;
  padding-left: 20px;
  display: none;
  transition: all 0.3s ease;
}

.has-submenu.open ul.submenu {
  display: block;
  transition: all 0.3s ease;
}

.has-submenu a span {
  font-size: 20px;
}

/* Close Menu Icon */
#closeMenu {
  font-size: 28px;
  cursor: pointer;
}

.menu-items li {
  margin: 15px 0;
  position: relative; /* For positioning the "+" sign */
}

.menu-items li a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  justify-content: space-between; /* Make space between text and "+" */
  align-items: center;
}

/* Submenu toggle styles for child submenu */
.has-submenu-child a span {
  font-size: 20px;
  color: #fff;
  margin-left: 10px;
}

/* Submenu is hidden by default */
.submenu-child {
  display: none;
  padding-left: 20px;
  transition: all 0.3s ease;
}

/* Submenu visible when parent has 'open' class */
.has-submenu-child.open .submenu-child {
  display: block;
}

.has-submenu-child a span {
  font-size: 20px;
}

.has-submenu-child.open a span {
  color: var(--brand-color-secondary);
}

/* Tab Buttons */
.tab-buttons,
.tab-buttons-guide {
  display: flex;
  justify-content: space-around;
  background-color: inherit; /* Use your existing background color */
  padding: 10px;
}

.tab-btn,
.tab-btn-guide {
  background-color: inherit; /* Use your existing background color */
  color: inherit; /* Use the existing color */
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn-guide.active {
  border-bottom: 2px solid var(--brand-color-secondary); /* Match the active state to your design */
}

.tab-btn:not(.active):hover,
.tab-btn-guide:not(.active):hover {
  color: var(--brand-color-secondary); /* A soft hover effect */
}

/* Tab Content */
.tab-content,
.tab-content-guide {
  padding: 20px;
  background-color: inherit; /* Use your existing background color */
  color: inherit; /* Use your existing text color */
}

.tab-panel,
.tab-panel-guide {
  display: none;
  transform: translateY(50px);
  transition: all 3s ease;
}

.tab-panel.active,
.tab-panel-guide.active {
  display: block;
  transform: translateY(0);
}

.nav-logo-mobile {
  transition: all 0.3s ease-in-out;
}

.slider-container {
  position: relative;
}

.slider-carousel .item {
  position: relative;
  height: 85vh; /* Adjusted height */
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; /* The image layer */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust overlay opacity */
  height: 100%; /* Full height */
  width: 100%; /* Full width */
  z-index: 2; /* Overlay above the image */
}

.slider-content {
  position: absolute; /* Content positioned above the overlay */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3; /* Content above the overlay */
  color: white;
  padding: 20px;
}

.slider-content h1 {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.6s ease;
}

.slider-content p {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slider-content h1.active {
  opacity: 1;
  transform: translateY(0);
}

.slider-content p.active {
  opacity: 1;
  transform: translateX(0);
}

.slider-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.slider-content .slider-btn.active {
  opacity: 1;
  transform: translateY(0);
}

.slider-content p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  color: #fff;
}

.slider-content h1 {
  font-size: 72px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 2px;
}

.slider-carousel .owl-nav button {
  border: none !important;
  color: var(--brand-color-secondary);
  padding: 10px 20px;
  font-size: 18px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.slider-carousel .owl-nav i {
  position: relative;
}

.slider-carousel .owl-nav .owl-prev {
  left: -5px;
}

.slider-carousel .owl-nav .owl-next {
  right: -5px;
}

.slider-carousel .owl-nav i {
  z-index: 2;
}

.slider-carousel .owl-nav .owl-prev::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #ffffff;
  transform: skewX(16deg);
  transform-origin: 50% 100%;
  will-change: transform;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.slider-carousel .owl-nav .owl-next {
  right: -5px !important;
}

.slider-carousel .owl-nav .owl-next::before {
  display: inline-block;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  transform: skewX(-9deg);
  transform-origin: 50% 100%;
  will-change: transform;
  pointer-events: none;
  transition: inherit;
  z-index: -1;
  transition: all 0.3s ease;
}

.slider-carousel .owl-nav button:hover {
  background-color: transparent !important;
}

.slider-carousel .owl-nav .owl-prev:hover::before {
  background-color: var(--brand-color-primary);
}

.slider-carousel .owl-nav .owl-next:hover::before {
  background-color: var(--brand-color-primary);
}

.slider-btn {
  background-color: var(--brand-color-secondary);
  color: #fff;
  width: 150px;
  padding: 10px;
}

.slider-btn:hover {
  background-color: var(--brand-color-primary);
  color: #fff;
  text-decoration: none;
}

.about-container .container {
  justify-content: space-between;
  padding: 16px;
  margin: auto;
}

/* Services Content Box */
.about-contains {
  background: white;
  padding: 16px;
  border-radius: 10px;
}

/* Hide all content by default */
.about-tab-content {
  display: none;
}

/* Show active content */
.about-tab-content.active {
  display: block;
}

.about-tabs {
  background: white;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.about-tab-btn {
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background: none;
  text-align: center;
  width: 100%;
  transition: 0.3s;
  border-bottom: 1px solid var(--brand-color-secondary);
  transition: all 0.3s ease;
}

.about-tab-btn:last-child {
  border-bottom: none;
}

/* Active tab */
.about-tab-btn.active,
.about-tab-btn:hover {
  background: var(--brand-color-primary);
  color: #fff;
}

.img-container img {
  width: 100%;
}

.service-carousel .owl-nav {
  margin: 15px 0 55px 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
  background: #fff !important;
  border: 1px solid var(--brand-color-secondary) !important;
  color: var(--brand-color-primary) !important;
  cursor: pointer !important;
  font-size: 16px !important;
  margin: 0 7px !important;
  padding: 6px 15px !important;
  transition: all 0.3s ease;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
  background: var(--brand-color-secondary) !important;
  border: 1px solid #eaeaea !important;
  color: var(--brand-color-primary) !important;
  cursor: pointer !important;
  font-size: 16px !important;
  margin: 0 7px !important;
  padding: 6px 15px !important;
}

.service-card {
  width: 280px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  position: relative;
}

.service-card .image-container {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-bottom-left-radius: 50px 20px;
  border-bottom-right-radius: 50px 20px;
  transition: 0.4s ease-in-out;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .number-badge {
  position: absolute;
  top: 5px;
  right: 15px;
  background: #1f3bb3;
  color: white;
  font-size: 18px;
  font-weight: bold;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.service-card .content {
  padding: 15px;
  text-align: center;
}

.service-card h3 {
  margin: 10px 0;
  font-size: 20px;
}

.service-card p {
  color: #555;
  font-size: 14px;
}

/* Hover Effect */
.service-card:hover .image-container {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.service-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.owl-carousel button.owl-dot {
  background: gray !important;
  width: 50px;
  height: 3px;
  transition: all 0.3s ease;
}

.owl-carousel button.owl-dot.active {
  background: var(--brand-color-primary) !important;
}

.owl-carousel button.owl-dot:hover {
  background: var(--brand-color-primary) !important;
}

.product-card {
  background-color: #fff;
  padding: 5px 5px 20px 5px;
}

.product-carousel .owl-nav button {
  border: none !important;
  color: #fff !important;
  padding: 10px 20px;
  font-size: 22px !important;
  height: 50px;
  width: 50px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-58%);
  transition: all 0.3s ease;
  background-color: var(--brand-color-primary) !important;
}

.product-carousel .owl-nav button.owl-prev {
  right: 0;
}

p.service-title {
  color: #000;
  font-size: 20px;
  margin-top: 2px;
}

.big-btn {
  width: 180px;
  height: 50px;
  background: var(--brand-color-primary);
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: 300;
  font-size: 20px;
}

.client-testimonal-section .row {
  gap: 40px;
  padding: 40px;
  justify-content: center;
  align-items: center;
}
.clients-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.clients-logos img {
  width: 100%;
  max-width: 150px;
  transition: all 0.3s ease;
  filter: grayscale(1);
}
.clients-logos img:hover {
  transform: scale(1.1);
  filter: grayscale(0);
}
.testimonial {
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.testimonial h2 {
  margin-bottom: 20px;
}
.testimonial-slider p {
  font-size: 16px;
  font-style: italic;
  color: #555;
}
.testimonial-slider h3 {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
}
.testimonial-slider span {
  color: #007bff;
}
.client-carousel {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.client-carousel img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  filter: grayscale(1);
}
.client-carousel img.active {
  border-color: var(--brand-color-primary);
  transform: scale(1.2);
  filter: grayscale(0);
}

.fact-section{
  padding: 0;
  position: relative;
}

.fact-contains{
  height: 180px;
  position: relative;
  z-index: 2;
}

.fact {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  position: relative;
}

.fact::after {
  content: "";
  width: 20%;
  height: 4px;
  background-color: var(--brand-color-primary);
  position: absolute;
  bottom: -50px; /* Adjusted for visibility */
  left: 50%;
  transform: translateX(-50%);
}

.fact:hover::after {
  animation: fact-and-figure 0.6s forwards;
}

@keyframes fact-and-figure {
  0% {
    bottom: -50px;
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    bottom: 0;
    transform: translateX(-50%) rotate(180deg);
  }
}

.figure{
  width: 100%;
}

.our-team{
  text-align: center;
  overflow: hidden;
  position: relative;
  height: 300px;
}
.our-team img{
  height: auto;
  transition: all 0.5s ease-in-out 0s;
}
.our-team:hover img{ transform: scale(1.2); }
.our-team .social{
  list-style: none;
  padding: 30px 15px;
  margin: 0;
  background: #0facf3;
  border-bottom-right-radius: 50px;
  position: absolute;
  top: 0;
  left: -50%;
  transition: all 0.4s ease-in-out 0s;
}
.our-team:hover .social{ left: 0; }
.our-team .social li{ display: block; }
.our-team .social li a{
  display: block;
  padding: 5px 0;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease-in-out 0s;
}
.our-team .social li:first-child a{ padding-top: 0; }
.our-team .social li:last-child a{ padding-bottom: 0; }
.our-team .social li a:hover{ color: #000; }
.our-team .team-content{
  width: 100%;
  padding: 15px 10px;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  left: 0;
}
.our-team .title{
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 5px 0;
}
.our-team .post{
  display: block;
  font-size: 14px;
  color: #0facf3;
}

.tagline{
  color: var(--brand-color-primary);
  font-weight: 600;
  font-size: 18px;
}

.team-content{
  font-size: 20px;
}

@media only screen and (max-width: 990px){
  .our-team{ margin-bottom: 30px;
  height: 480px; }
}

.post-classic {
  position: relative;
  text-align: left;
  color: #151515;
  background: #ffffff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.09);
  z-index: 1;
}

.post-classic .post-classic-time {
  position: absolute;
  top: 6%;
  left: 5%;
}

.post-classic-figure {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: -1;
}

.post-classic-figure img {
  width: 100%;
  transform: none;
  will-change: transform;
  transition: all .25s ease;
}

.post-classic-time {
  padding: 1px 10px;
  font-size: 12px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 30px;
  color: #fff;
  background: var(--brand-color-primary);
  z-index: 1;
}

.post-classic-content {
  padding: 6% 5%;
}

.post-classic-title {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .075em;
}

.post-classic-title a, .post-classic-title a:focus, .post-classic-title a:active {
  color: inherit;
}

.post-classic-title a:hover {
  color: inherit;
}

.post-classic-title a:hover {
  text-decoration: underline;
}

.post-classic-info {
  font-size: 15px;
  line-height: 1;
  letter-spacing: .05em;
  color: #777777;
}

.post-classic-info li + li {
  border-left: 1px solid #cccccc;
}

.post-classic-info a, .post-classic-info a:focus, .post-classic-info a:active {
  color: inherit;
}

.post-classic-info a:hover {
  color: var(--brand-color-primary);
}

.post-classic-comments > *, .post-classic-author > *, .post-classic-views > * {
  display: inline-block;
  vertical-align: middle;
}

.post-classic-comments .icon, .post-classic-author .icon, .post-classic-views .icon {
  font-size: 16px;
  margin-right: 8px;
}

.post-classic-author .icon {
  font-size: 18px;
}

@media (max-width: 575.98px) {
  .slick-news .post-classic {
      max-width: 220px;
      margin-left: auto;
      margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .slick-news .post-classic-title {
      max-height: 68px;
      overflow: hidden;
  }
}

@media (min-width: 768px) {
  .post-classic-title {
      font-size: 18px;
  }

  .post-classic-content {
      padding: 8% 9%;
  }

  .post-classic .post-classic-time {
      top: 8%;
      left: 9%;
  }
}

@media (min-width: 992px) {
  .post-classic-content {
      padding: 7%;
  }

  .post-classic .post-classic-time {
      top: 7%;
      left: 7%;
  }
}

@media (min-width: 992px) {
  .desktop .post-classic:hover .post-classic-figure img {
      transform: scale(1.1);
  }
}

footer{
  background: var(--brand-color-primary) url(../images/world-map.png) no-repeat center;
  position: relative;
  padding: 30px 0;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
}

.line {
  background-color: #fff;
  width: 50px;
  height: 3px;
  margin-bottom: 15px;
}

.footer-icon {
  color: #fff;
  background-color: transparent;
  height: 32px;
  width: 32px;
  padding: 8px;
  border: 1px solid var(--gray);
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background-color: var(--brand-color-primary);
}

.social-media {
  gap: 10px;
}

footer .latest-news .image-container img {
  border-radius: 8px;
}

footer .heading {
  font-weight: 500;
  color: #fff;
}

footer .gray-text{
  color: #fff;
}

footer ul {
  padding-left: 0;
  list-style-type: none;
}

footer a {
  color: var(--gray);
}

footer li {
  margin: 13px 0;
}

.footer-icon-contact {
  color: var(--gray);
  font-size: 20px;
}

.footer-contact {
  color: var(--gray);
  font-size: 18px;
}

.copyright-section {
  text-align: center;
  padding: 50px 0 5px 0;
  color: #fff;
}

.title-container .bg-cta{
  position: relative;
  height: 130px;
  padding: 30px;
  color: #fff;
}

.title-container .bg-cta h1{
  position: relative;
  z-index: 2;
}

.breadcrumbs-container{
  background-color: #777777;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.breadcrumbs-container ul{
  list-style: none;
  display: flex; 
  justify-self: center;
  align-items: center;
  gap: 20px;
}

.breadcrumbs-container ul li  a{
  text-decoration: none;
  color: #fff;
}

.detail-container .detail-img-container{
  display: flex;
  align-items: center;
  justify-content: center;
} 

.detail-container .detail-img-container img{
  width: 800px;
}

.pagination {
  width: 100%;
  display: flex;
  font-family: Arial, sans-serif;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
}

.pagination a {
  color: var(--brand-color-primary);
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 1px solid #ddd;
  margin: 0 4px;
  border-radius: 4px;
}

.pagination a:hover {
  background-color: var(--brand-color-primary);
  color: white;
}

.pagination a.active {
  background-color: var(--brand-color-secondary);
  color: white;
  border: 1px solid var(--brand-color-secondary);
}

.pagination a:first-child, 
.pagination a:last-child {
  border-radius: 4px;
}

.our-team-list{
  height: 550px;
}





